diff --git a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md
index 5bda15fc7c99..3bd329ee2e7a 100644
--- a/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md
+++ b/sdk/netapp/azure-mgmt-netapp/CHANGELOG.md
@@ -1,5 +1,55 @@
# Release History
+## 0.13.0 (2020-08-31)
+
+**Features**
+
+ - Model ActiveDirectory has a new parameter ad_name
+ - Model ActiveDirectory has a new parameter kdc_ip
+ - Model ActiveDirectory has a new parameter server_root_ca_certificate
+ - Model ActiveDirectory has a new parameter status_details
+ - Model ExportPolicyRule has a new parameter kerberos5i_read_only
+ - Model ExportPolicyRule has a new parameter kerberos5i_read_write
+ - Model ExportPolicyRule has a new parameter has_root_access
+ - Model ExportPolicyRule has a new parameter kerberos5_read_only
+ - Model ExportPolicyRule has a new parameter kerberos5p_read_only
+ - Model ExportPolicyRule has a new parameter kerberos5p_read_write
+ - Model ExportPolicyRule has a new parameter kerberos5_read_write
+ - Model CapacityPoolPatch has a new parameter qos_type
+ - Model Volume has a new parameter security_style
+ - Model Volume has a new parameter backup_id
+ - Model Volume has a new parameter kerberos_enabled
+ - Model Volume has a new parameter throughput_mibps
+ - Model VolumePropertiesDataProtection has a new parameter backup
+ - Model VolumePatch has a new parameter data_protection
+ - Model VolumePatch has a new parameter throughput_mibps
+ - Model CapacityPool has a new parameter total_throughput_mibps
+ - Model CapacityPool has a new parameter qos_type
+ - Model CapacityPool has a new parameter utilized_throughput_mibps
+ - Added operation NetAppResourceOperations.check_quota_availability
+ - Added operation VolumesOperations.re_initialize_replication
+ - Added operation VolumesOperations.pool_change
+ - Added operation group BackupPoliciesOperations
+ - Added operation group AccountBackupsOperations
+ - Added operation group SnapshotPoliciesOperations
+ - Added operation group BackupsOperations
+ - Added operation group VaultsOperations
+
+**Breaking changes**
+
+ - Operation VolumesOperations.break_replication has a new signature
+ - Model CapacityPoolPatch no longer has parameter service_level
+ - Model MountTarget no longer has parameter end_ip
+ - Model MountTarget no longer has parameter netmask
+ - Model MountTarget no longer has parameter subnet
+ - Model MountTarget no longer has parameter gateway
+ - Model MountTarget no longer has parameter start_ip
+ - Model MountTargetProperties no longer has parameter end_ip
+ - Model MountTargetProperties no longer has parameter netmask
+ - Model MountTargetProperties no longer has parameter subnet
+ - Model MountTargetProperties no longer has parameter gateway
+ - Model MountTargetProperties no longer has parameter start_ip
+
## 0.12.0 (2020-07-30)
**Features**
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_azure_net_app_files_management_client.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_azure_net_app_files_management_client.py
index bcdf17ef4942..30d82064bb7d 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_azure_net_app_files_management_client.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_azure_net_app_files_management_client.py
@@ -19,6 +19,11 @@
from .operations import PoolsOperations
from .operations import VolumesOperations
from .operations import SnapshotsOperations
+from .operations import SnapshotPoliciesOperations
+from .operations import AccountBackupsOperations
+from .operations import BackupsOperations
+from .operations import BackupPoliciesOperations
+from .operations import VaultsOperations
from . import models
@@ -40,6 +45,16 @@ class AzureNetAppFilesManagementClient(SDKClient):
:vartype volumes: azure.mgmt.netapp.operations.VolumesOperations
:ivar snapshots: Snapshots operations
:vartype snapshots: azure.mgmt.netapp.operations.SnapshotsOperations
+ :ivar snapshot_policies: SnapshotPolicies operations
+ :vartype snapshot_policies: azure.mgmt.netapp.operations.SnapshotPoliciesOperations
+ :ivar account_backups: AccountBackups operations
+ :vartype account_backups: azure.mgmt.netapp.operations.AccountBackupsOperations
+ :ivar backups: Backups operations
+ :vartype backups: azure.mgmt.netapp.operations.BackupsOperations
+ :ivar backup_policies: BackupPolicies operations
+ :vartype backup_policies: azure.mgmt.netapp.operations.BackupPoliciesOperations
+ :ivar vaults: Vaults operations
+ :vartype vaults: azure.mgmt.netapp.operations.VaultsOperations
:param credentials: Credentials needed for the client to connect to Azure.
:type credentials: :mod:`A msrestazure Credentials
@@ -58,7 +73,7 @@ def __init__(
super(AzureNetAppFilesManagementClient, self).__init__(self.config.credentials, self.config)
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
- self.api_version = '2020-02-01'
+ self.api_version = '2020-06-01'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)
@@ -74,3 +89,13 @@ def __init__(
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.account_backups = AccountBackupsOperations(
+ self._client, self.config, self._serialize, self._deserialize)
+ self.backups = BackupsOperations(
+ self._client, self.config, self._serialize, self._deserialize)
+ self.backup_policies = BackupPoliciesOperations(
+ self._client, self.config, self._serialize, self._deserialize)
+ self.vaults = VaultsOperations(
+ self._client, self.config, self._serialize, self._deserialize)
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 dd213c562680..ad20b7b9e5b6 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
@@ -12,68 +12,118 @@
try:
from ._models_py3 import ActiveDirectory
from ._models_py3 import AuthorizeRequest
+ from ._models_py3 import Backup
+ from ._models_py3 import BackupPatch
+ from ._models_py3 import BackupPolicy
+ from ._models_py3 import BackupPolicyDetails
+ from ._models_py3 import BackupPolicyPatch
+ from ._models_py3 import BackupsList
+ from ._models_py3 import BreakReplicationRequest
from ._models_py3 import CapacityPool
from ._models_py3 import CapacityPoolPatch
+ from ._models_py3 import CheckAvailabilityResponse
+ from ._models_py3 import DailySchedule
from ._models_py3 import Dimension
from ._models_py3 import ExportPolicyRule
+ from ._models_py3 import HourlySchedule
from ._models_py3 import MetricSpecification
+ from ._models_py3 import MonthlySchedule
from ._models_py3 import MountTarget
from ._models_py3 import MountTargetProperties
from ._models_py3 import NetAppAccount
from ._models_py3 import NetAppAccountPatch
from ._models_py3 import Operation
from ._models_py3 import OperationDisplay
+ from ._models_py3 import PoolChangeRequest
+ from ._models_py3 import QuotaAvailabilityRequest
from ._models_py3 import ReplicationObject
from ._models_py3 import ReplicationStatus
- from ._models_py3 import ResourceNameAvailability
from ._models_py3 import ResourceNameAvailabilityRequest
from ._models_py3 import ServiceSpecification
from ._models_py3 import Snapshot
+ from ._models_py3 import SnapshotPolicy
+ from ._models_py3 import SnapshotPolicyDetails
+ from ._models_py3 import SnapshotPolicyPatch
+ from ._models_py3 import SnapshotPolicyVolumeList
+ from ._models_py3 import Vault
from ._models_py3 import Volume
+ from ._models_py3 import VolumeBackupProperties
+ from ._models_py3 import VolumeBackups
from ._models_py3 import VolumePatch
+ from ._models_py3 import VolumePatchPropertiesDataProtection
from ._models_py3 import VolumePatchPropertiesExportPolicy
from ._models_py3 import VolumePropertiesDataProtection
from ._models_py3 import VolumePropertiesExportPolicy
from ._models_py3 import VolumeRevert
from ._models_py3 import VolumeSnapshotProperties
+ from ._models_py3 import WeeklySchedule
except (SyntaxError, ImportError):
from ._models import ActiveDirectory
from ._models import AuthorizeRequest
+ from ._models import Backup
+ from ._models import BackupPatch
+ from ._models import BackupPolicy
+ from ._models import BackupPolicyDetails
+ from ._models import BackupPolicyPatch
+ from ._models import BackupsList
+ from ._models import BreakReplicationRequest
from ._models import CapacityPool
from ._models import CapacityPoolPatch
+ from ._models import CheckAvailabilityResponse
+ from ._models import DailySchedule
from ._models import Dimension
from ._models import ExportPolicyRule
+ from ._models import HourlySchedule
from ._models import MetricSpecification
+ from ._models import MonthlySchedule
from ._models import MountTarget
from ._models import MountTargetProperties
from ._models import NetAppAccount
from ._models import NetAppAccountPatch
from ._models import Operation
from ._models import OperationDisplay
+ from ._models import PoolChangeRequest
+ from ._models import QuotaAvailabilityRequest
from ._models import ReplicationObject
from ._models import ReplicationStatus
- from ._models import ResourceNameAvailability
from ._models import ResourceNameAvailabilityRequest
from ._models import ServiceSpecification
from ._models import Snapshot
+ from ._models import SnapshotPolicy
+ from ._models import SnapshotPolicyDetails
+ from ._models import SnapshotPolicyPatch
+ from ._models import SnapshotPolicyVolumeList
+ from ._models import Vault
from ._models import Volume
+ from ._models import VolumeBackupProperties
+ from ._models import VolumeBackups
from ._models import VolumePatch
+ from ._models import VolumePatchPropertiesDataProtection
from ._models import VolumePatchPropertiesExportPolicy
from ._models import VolumePropertiesDataProtection
from ._models import VolumePropertiesExportPolicy
from ._models import VolumeRevert
from ._models import VolumeSnapshotProperties
+ from ._models import WeeklySchedule
+from ._paged_models import BackupPaged
+from ._paged_models import BackupPolicyPaged
from ._paged_models import CapacityPoolPaged
from ._paged_models import NetAppAccountPaged
from ._paged_models import OperationPaged
from ._paged_models import SnapshotPaged
+from ._paged_models import SnapshotPolicyPaged
+from ._paged_models import VaultPaged
from ._paged_models import VolumePaged
from ._azure_net_app_files_management_client_enums import (
InAvailabilityReasonType,
CheckNameResourceTypes,
+ CheckQuotaNameResourceTypes,
+ ActiveDirectoryStatus,
ServiceLevel,
+ QosType,
EndpointType,
ReplicationSchedule,
+ SecurityStyle,
RelationshipStatus,
MirrorState,
)
@@ -81,40 +131,69 @@
__all__ = [
'ActiveDirectory',
'AuthorizeRequest',
+ 'Backup',
+ 'BackupPatch',
+ 'BackupPolicy',
+ 'BackupPolicyDetails',
+ 'BackupPolicyPatch',
+ 'BackupsList',
+ 'BreakReplicationRequest',
'CapacityPool',
'CapacityPoolPatch',
+ 'CheckAvailabilityResponse',
+ 'DailySchedule',
'Dimension',
'ExportPolicyRule',
+ 'HourlySchedule',
'MetricSpecification',
+ 'MonthlySchedule',
'MountTarget',
'MountTargetProperties',
'NetAppAccount',
'NetAppAccountPatch',
'Operation',
'OperationDisplay',
+ 'PoolChangeRequest',
+ 'QuotaAvailabilityRequest',
'ReplicationObject',
'ReplicationStatus',
- 'ResourceNameAvailability',
'ResourceNameAvailabilityRequest',
'ServiceSpecification',
'Snapshot',
+ 'SnapshotPolicy',
+ 'SnapshotPolicyDetails',
+ 'SnapshotPolicyPatch',
+ 'SnapshotPolicyVolumeList',
+ 'Vault',
'Volume',
+ 'VolumeBackupProperties',
+ 'VolumeBackups',
'VolumePatch',
+ 'VolumePatchPropertiesDataProtection',
'VolumePatchPropertiesExportPolicy',
'VolumePropertiesDataProtection',
'VolumePropertiesExportPolicy',
'VolumeRevert',
'VolumeSnapshotProperties',
+ 'WeeklySchedule',
'OperationPaged',
'NetAppAccountPaged',
'CapacityPoolPaged',
'VolumePaged',
'SnapshotPaged',
+ 'SnapshotPolicyPaged',
+ 'BackupPaged',
+ 'BackupPolicyPaged',
+ 'VaultPaged',
'InAvailabilityReasonType',
'CheckNameResourceTypes',
+ 'CheckQuotaNameResourceTypes',
+ 'ActiveDirectoryStatus',
'ServiceLevel',
+ 'QosType',
'EndpointType',
'ReplicationSchedule',
+ 'SecurityStyle',
'RelationshipStatus',
'MirrorState',
]
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_azure_net_app_files_management_client_enums.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_azure_net_app_files_management_client_enums.py
index 9fe3cca234e5..76b65e6c4c31 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_azure_net_app_files_management_client_enums.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_azure_net_app_files_management_client_enums.py
@@ -26,6 +26,23 @@ class CheckNameResourceTypes(str, Enum):
microsoft_net_appnet_app_accountscapacity_poolsvolumessnapshots = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots"
+class CheckQuotaNameResourceTypes(str, Enum):
+
+ microsoft_net_appnet_app_accounts = "Microsoft.NetApp/netAppAccounts"
+ microsoft_net_appnet_app_accountscapacity_pools = "Microsoft.NetApp/netAppAccounts/capacityPools"
+ microsoft_net_appnet_app_accountscapacity_poolsvolumes = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes"
+ microsoft_net_appnet_app_accountscapacity_poolsvolumessnapshots = "Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots"
+
+
+class ActiveDirectoryStatus(str, Enum):
+
+ created = "Created" #: Active Directory created but not in use
+ in_use = "InUse" #: Active Directory in use by SMB Volume
+ deleted = "Deleted" #: Active Directory Deleted
+ error = "Error" #: Error with the Active Directory
+ updating = "Updating" #: Active Directory Updating
+
+
class ServiceLevel(str, Enum):
standard = "Standard" #: Standard service level
@@ -33,6 +50,12 @@ class ServiceLevel(str, Enum):
ultra = "Ultra" #: Ultra service level
+class QosType(str, Enum):
+
+ auto = "Auto" #: qos type Auto
+ manual = "Manual" #: qos type Manual
+
+
class EndpointType(str, Enum):
src = "src"
@@ -48,6 +71,12 @@ class ReplicationSchedule(str, Enum):
monthly = "monthly"
+class SecurityStyle(str, Enum):
+
+ ntfs = "ntfs"
+ unix = "unix"
+
+
class RelationshipStatus(str, Enum):
idle = "Idle"
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py
index 493cf97cf428..a65c58073e0c 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py
@@ -15,20 +15,27 @@
class ActiveDirectory(Model):
"""Active Directory.
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
:param active_directory_id: Id of the Active Directory
:type active_directory_id: str
:param username: Username of Active Directory domain administrator
:type username: str
:param password: Plain text password of Active Directory domain
- administrator
+ administrator, value is masked in the response
:type password: str
:param domain: Name of the Active Directory domain
:type domain: str
:param dns: Comma separated list of DNS server IP addresses (IPv4 only)
for the Active Directory domain
:type dns: str
- :param status: Status of the Active Directory
- :type status: str
+ :ivar status: Status of the Active Directory. Possible values include:
+ '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
:param smb_server_name: NetBIOS name of the SMB server. This name will be
registered as a computer account in the AD and used to mount volumes
:type smb_server_name: str
@@ -42,8 +49,28 @@ class ActiveDirectory(Model):
active directory group. A list of unique usernames without domain
specifier
:type backup_operators: list[str]
+ :param kdc_ip: kdc server IP addresses for the active directory machine.
+ This optional parameter is used only while creating kerberos volume.
+ :type kdc_ip: str
+ :param ad_name: Name of the active directory machine. This optional
+ parameter is used only while creating kerberos volume
+ :type ad_name: str
+ :param server_root_ca_certificate: When LDAP over SSL/TLS is enabled, the
+ LDAP client is required to have base64 encoded Active Directory
+ Certificate Service's self-signed root CA certificate, this optional
+ parameter is used only for dual protocol with LDAP user-mapping volumes.
+ :type server_root_ca_certificate: str
"""
+ _validation = {
+ 'dns': {'pattern': r'^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)((, ?)(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))*$'},
+ 'status': {'readonly': True},
+ 'status_details': {'readonly': True},
+ 'kdc_ip': {'pattern': r'^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)((, ?)(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))*$'},
+ 'ad_name': {'max_length': 64, 'min_length': 1},
+ 'server_root_ca_certificate': {'max_length': 10240, 'min_length': 1},
+ }
+
_attribute_map = {
'active_directory_id': {'key': 'activeDirectoryId', 'type': 'str'},
'username': {'key': 'username', 'type': 'str'},
@@ -51,10 +78,14 @@ class ActiveDirectory(Model):
'domain': {'key': 'domain', 'type': 'str'},
'dns': {'key': 'dns', 'type': 'str'},
'status': {'key': 'status', 'type': 'str'},
+ 'status_details': {'key': 'statusDetails', 'type': 'str'},
'smb_server_name': {'key': 'smbServerName', 'type': 'str'},
'organizational_unit': {'key': 'organizationalUnit', 'type': 'str'},
'site': {'key': 'site', 'type': 'str'},
'backup_operators': {'key': 'backupOperators', 'type': '[str]'},
+ 'kdc_ip': {'key': 'kdcIP', 'type': 'str'},
+ 'ad_name': {'key': 'adName', 'type': 'str'},
+ 'server_root_ca_certificate': {'key': 'serverRootCACertificate', 'type': 'str'},
}
def __init__(self, **kwargs):
@@ -64,11 +95,15 @@ def __init__(self, **kwargs):
self.password = kwargs.get('password', None)
self.domain = kwargs.get('domain', None)
self.dns = kwargs.get('dns', None)
- self.status = kwargs.get('status', None)
+ self.status = None
+ self.status_details = None
self.smb_server_name = kwargs.get('smb_server_name', None)
self.organizational_unit = kwargs.get('organizational_unit', None)
self.site = kwargs.get('site', None)
self.backup_operators = kwargs.get('backup_operators', None)
+ self.kdc_ip = kwargs.get('kdc_ip', None)
+ self.ad_name = kwargs.get('ad_name', None)
+ self.server_root_ca_certificate = kwargs.get('server_root_ca_certificate', None)
class AuthorizeRequest(Model):
@@ -87,6 +122,370 @@ def __init__(self, **kwargs):
self.remote_volume_resource_id = kwargs.get('remote_volume_resource_id', None)
+class Backup(Model):
+ """Backup of a Volume.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param location: Required. Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :ivar creation_date: name. The creation date of the backup
+ :vartype creation_date: datetime
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :ivar size: Size of backup
+ :vartype size: long
+ :param label: Label for backup
+ :type label: str
+ :ivar backup_type: Type of backup adhoc or scheduled
+ :vartype backup_type: str
+ """
+
+ _validation = {
+ 'location': {'required': True},
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ 'creation_date': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ 'size': {'readonly': True},
+ 'backup_type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'creation_date': {'key': 'properties.creationDate', 'type': 'iso-8601'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'size': {'key': 'properties.size', 'type': 'long'},
+ 'label': {'key': 'properties.label', 'type': 'str'},
+ 'backup_type': {'key': 'properties.backupType', 'type': 'str'},
+ }
+
+ def __init__(self, **kwargs):
+ super(Backup, self).__init__(**kwargs)
+ self.location = kwargs.get('location', None)
+ self.id = None
+ self.name = None
+ self.type = None
+ self.creation_date = None
+ self.provisioning_state = None
+ self.size = None
+ self.label = kwargs.get('label', None)
+ self.backup_type = None
+
+
+class BackupPatch(Model):
+ """Backup patch.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :ivar creation_date: name. The creation date of the backup
+ :vartype creation_date: datetime
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :ivar size: Size of backup
+ :vartype size: long
+ :param label: Label for backup
+ :type label: str
+ :ivar backup_type: Type of backup adhoc or scheduled
+ :vartype backup_type: str
+ """
+
+ _validation = {
+ 'creation_date': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ 'size': {'readonly': True},
+ 'backup_type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'creation_date': {'key': 'properties.creationDate', 'type': 'iso-8601'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'size': {'key': 'properties.size', 'type': 'long'},
+ 'label': {'key': 'properties.label', 'type': 'str'},
+ 'backup_type': {'key': 'properties.backupType', 'type': 'str'},
+ }
+
+ def __init__(self, **kwargs):
+ super(BackupPatch, self).__init__(**kwargs)
+ self.tags = kwargs.get('tags', None)
+ self.creation_date = None
+ self.provisioning_state = None
+ self.size = None
+ self.label = kwargs.get('label', None)
+ self.backup_type = None
+
+
+class BackupPolicy(Model):
+ """Backup policy information.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param location: Required. Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :ivar name1: Name of backup policy
+ :vartype name1: str
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :param daily_backups_to_keep: Daily backups count to keep
+ :type daily_backups_to_keep: int
+ :param weekly_backups_to_keep: Weekly backups count to keep
+ :type weekly_backups_to_keep: int
+ :param monthly_backups_to_keep: Monthly backups count to keep
+ :type monthly_backups_to_keep: int
+ :param yearly_backups_to_keep: Yearly backups count to keep
+ :type yearly_backups_to_keep: int
+ :param volumes_assigned: Volumes using current backup policy
+ :type volumes_assigned: int
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ :param volume_backups: A list of volumes assigned to this policy
+ :type volume_backups: list[~azure.mgmt.netapp.models.VolumeBackups]
+ """
+
+ _validation = {
+ 'location': {'required': True},
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ 'name1': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'name1': {'key': 'properties.name', 'type': 'str'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'daily_backups_to_keep': {'key': 'properties.dailyBackupsToKeep', 'type': 'int'},
+ 'weekly_backups_to_keep': {'key': 'properties.weeklyBackupsToKeep', 'type': 'int'},
+ 'monthly_backups_to_keep': {'key': 'properties.monthlyBackupsToKeep', 'type': 'int'},
+ 'yearly_backups_to_keep': {'key': 'properties.yearlyBackupsToKeep', 'type': 'int'},
+ 'volumes_assigned': {'key': 'properties.volumesAssigned', 'type': 'int'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ 'volume_backups': {'key': 'properties.volumeBackups', 'type': '[VolumeBackups]'},
+ }
+
+ def __init__(self, **kwargs):
+ super(BackupPolicy, self).__init__(**kwargs)
+ self.location = kwargs.get('location', None)
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = kwargs.get('tags', None)
+ self.name1 = None
+ self.provisioning_state = None
+ self.daily_backups_to_keep = kwargs.get('daily_backups_to_keep', None)
+ self.weekly_backups_to_keep = kwargs.get('weekly_backups_to_keep', None)
+ self.monthly_backups_to_keep = kwargs.get('monthly_backups_to_keep', None)
+ self.yearly_backups_to_keep = kwargs.get('yearly_backups_to_keep', None)
+ self.volumes_assigned = kwargs.get('volumes_assigned', None)
+ self.enabled = kwargs.get('enabled', None)
+ self.volume_backups = kwargs.get('volume_backups', None)
+
+
+class BackupPolicyDetails(Model):
+ """Backup policy properties.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param location: Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :ivar name1: Name of backup policy
+ :vartype name1: str
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :param daily_backups_to_keep: Daily backups count to keep
+ :type daily_backups_to_keep: int
+ :param weekly_backups_to_keep: Weekly backups count to keep
+ :type weekly_backups_to_keep: int
+ :param monthly_backups_to_keep: Monthly backups count to keep
+ :type monthly_backups_to_keep: int
+ :param yearly_backups_to_keep: Yearly backups count to keep
+ :type yearly_backups_to_keep: int
+ :param volumes_assigned: Volumes using current backup policy
+ :type volumes_assigned: int
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ :param volume_backups: A list of volumes assigned to this policy
+ :type volume_backups: list[~azure.mgmt.netapp.models.VolumeBackups]
+ """
+
+ _validation = {
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ 'name1': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'name1': {'key': 'properties.name', 'type': 'str'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'daily_backups_to_keep': {'key': 'properties.dailyBackupsToKeep', 'type': 'int'},
+ 'weekly_backups_to_keep': {'key': 'properties.weeklyBackupsToKeep', 'type': 'int'},
+ 'monthly_backups_to_keep': {'key': 'properties.monthlyBackupsToKeep', 'type': 'int'},
+ 'yearly_backups_to_keep': {'key': 'properties.yearlyBackupsToKeep', 'type': 'int'},
+ 'volumes_assigned': {'key': 'properties.volumesAssigned', 'type': 'int'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ 'volume_backups': {'key': 'properties.volumeBackups', 'type': '[VolumeBackups]'},
+ }
+
+ def __init__(self, **kwargs):
+ super(BackupPolicyDetails, self).__init__(**kwargs)
+ self.location = kwargs.get('location', None)
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = kwargs.get('tags', None)
+ self.name1 = None
+ self.provisioning_state = None
+ self.daily_backups_to_keep = kwargs.get('daily_backups_to_keep', None)
+ self.weekly_backups_to_keep = kwargs.get('weekly_backups_to_keep', None)
+ self.monthly_backups_to_keep = kwargs.get('monthly_backups_to_keep', None)
+ self.yearly_backups_to_keep = kwargs.get('yearly_backups_to_keep', None)
+ self.volumes_assigned = kwargs.get('volumes_assigned', None)
+ self.enabled = kwargs.get('enabled', None)
+ self.volume_backups = kwargs.get('volume_backups', None)
+
+
+class BackupPolicyPatch(Model):
+ """Backup policy Details for create and update.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param location: Resource location
+ :type location: str
+ :ivar name: Name of backup policy
+ :vartype name: str
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :param daily_backups_to_keep: Daily backups count to keep
+ :type daily_backups_to_keep: int
+ :param weekly_backups_to_keep: Weekly backups count to keep
+ :type weekly_backups_to_keep: int
+ :param monthly_backups_to_keep: Monthly backups count to keep
+ :type monthly_backups_to_keep: int
+ :param yearly_backups_to_keep: Yearly backups count to keep
+ :type yearly_backups_to_keep: int
+ :param volumes_assigned: Volumes using current backup policy
+ :type volumes_assigned: int
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ :param volume_backups: A list of volumes assigned to this policy
+ :type volume_backups: list[~azure.mgmt.netapp.models.VolumeBackups]
+ """
+
+ _validation = {
+ 'name': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'name': {'key': 'properties.name', 'type': 'str'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'daily_backups_to_keep': {'key': 'properties.dailyBackupsToKeep', 'type': 'int'},
+ 'weekly_backups_to_keep': {'key': 'properties.weeklyBackupsToKeep', 'type': 'int'},
+ 'monthly_backups_to_keep': {'key': 'properties.monthlyBackupsToKeep', 'type': 'int'},
+ 'yearly_backups_to_keep': {'key': 'properties.yearlyBackupsToKeep', 'type': 'int'},
+ 'volumes_assigned': {'key': 'properties.volumesAssigned', 'type': 'int'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ 'volume_backups': {'key': 'properties.volumeBackups', 'type': '[VolumeBackups]'},
+ }
+
+ def __init__(self, **kwargs):
+ super(BackupPolicyPatch, self).__init__(**kwargs)
+ self.location = kwargs.get('location', None)
+ self.name = None
+ self.provisioning_state = None
+ self.daily_backups_to_keep = kwargs.get('daily_backups_to_keep', None)
+ self.weekly_backups_to_keep = kwargs.get('weekly_backups_to_keep', None)
+ self.monthly_backups_to_keep = kwargs.get('monthly_backups_to_keep', None)
+ self.yearly_backups_to_keep = kwargs.get('yearly_backups_to_keep', None)
+ self.volumes_assigned = kwargs.get('volumes_assigned', None)
+ self.enabled = kwargs.get('enabled', None)
+ self.volume_backups = kwargs.get('volume_backups', None)
+
+
+class BackupsList(Model):
+ """List of Backups.
+
+ :param value: A list of Backups
+ :type value: list[~azure.mgmt.netapp.models.Backup]
+ """
+
+ _attribute_map = {
+ 'value': {'key': 'value', 'type': '[Backup]'},
+ }
+
+ def __init__(self, **kwargs):
+ super(BackupsList, self).__init__(**kwargs)
+ self.value = kwargs.get('value', None)
+
+
+class BreakReplicationRequest(Model):
+ """Break replication request.
+
+ :param force_break_replication: If replication is in status transferring
+ and you want to force break the replication, set to true
+ :type force_break_replication: bool
+ """
+
+ _attribute_map = {
+ 'force_break_replication': {'key': 'forceBreakReplication', 'type': 'bool'},
+ }
+
+ def __init__(self, **kwargs):
+ super(BreakReplicationRequest, self).__init__(**kwargs)
+ self.force_break_replication = kwargs.get('force_break_replication', None)
+
+
class CapacityPool(Model):
"""Capacity pool resource.
@@ -117,6 +516,13 @@ class CapacityPool(Model):
:type 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
+ :vartype total_throughput_mibps: float
+ :ivar utilized_throughput_mibps: Utilized throughput of pool in Mibps
+ :vartype utilized_throughput_mibps: float
+ :param qos_type: qosType. The qos type of the pool. Possible values
+ include: 'Auto', 'Manual'. Default value: "Auto" .
+ :type qos_type: str or ~azure.mgmt.netapp.models.QosType
"""
_validation = {
@@ -128,6 +534,8 @@ class CapacityPool(Model):
'size': {'required': True, 'maximum': 549755813888000, 'minimum': 4398046511104},
'service_level': {'required': True},
'provisioning_state': {'readonly': True},
+ 'total_throughput_mibps': {'readonly': True, 'multiple': 0.001},
+ 'utilized_throughput_mibps': {'readonly': True, 'multiple': 0.001},
}
_attribute_map = {
@@ -140,6 +548,9 @@ class CapacityPool(Model):
'size': {'key': 'properties.size', 'type': 'long'},
'service_level': {'key': 'properties.serviceLevel', 'type': 'str'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'total_throughput_mibps': {'key': 'properties.totalThroughputMibps', 'type': 'float'},
+ 'utilized_throughput_mibps': {'key': 'properties.utilizedThroughputMibps', 'type': 'float'},
+ 'qos_type': {'key': 'properties.qosType', 'type': 'str'},
}
def __init__(self, **kwargs):
@@ -153,6 +564,9 @@ def __init__(self, **kwargs):
self.size = kwargs.get('size', None)
self.service_level = kwargs.get('service_level', "Premium")
self.provisioning_state = None
+ self.total_throughput_mibps = None
+ self.utilized_throughput_mibps = None
+ self.qos_type = kwargs.get('qos_type', "Auto")
class CapacityPoolPatch(Model):
@@ -175,10 +589,9 @@ class CapacityPoolPatch(Model):
are in 4TiB chunks (value must be multiply of 4398046511104). Default
value: 4398046511104 .
:type size: long
- :param service_level: serviceLevel. The service level of the file system.
- Possible values include: 'Standard', 'Premium', 'Ultra'. Default value:
- "Premium" .
- :type service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
+ :param qos_type: qosType. The qos type of the pool. Possible values
+ include: 'Auto', 'Manual'. Default value: "Auto" .
+ :type qos_type: str or ~azure.mgmt.netapp.models.QosType
"""
_validation = {
@@ -195,7 +608,7 @@ class CapacityPoolPatch(Model):
'type': {'key': 'type', 'type': 'str'},
'tags': {'key': 'tags', 'type': '{str}'},
'size': {'key': 'properties.size', 'type': 'long'},
- 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'},
+ 'qos_type': {'key': 'properties.qosType', 'type': 'str'},
}
def __init__(self, **kwargs):
@@ -206,7 +619,40 @@ def __init__(self, **kwargs):
self.type = None
self.tags = kwargs.get('tags', None)
self.size = kwargs.get('size', 4398046511104)
- self.service_level = kwargs.get('service_level', "Premium")
+ self.qos_type = kwargs.get('qos_type', "Auto")
+
+
+class CheckAvailabilityResponse(Model):
+ """Information regarding availability of a resource.
+
+ :param is_available: true indicates name is valid and
+ available. false indicates the name is invalid, unavailable,
+ or both.
+ :type is_available: bool
+ :param reason: Invalid indicates the name provided does not
+ match Azure App Service naming requirements. AlreadyExists
+ indicates that the name is already in use and is therefore unavailable.
+ Possible values include: 'Invalid', 'AlreadyExists'
+ :type reason: str or ~azure.mgmt.netapp.models.InAvailabilityReasonType
+ :param 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. If reason == AlreadyExists, explain
+ that resource name is already in use, and direct them to select a
+ different name.
+ :type message: str
+ """
+
+ _attribute_map = {
+ 'is_available': {'key': 'isAvailable', 'type': 'bool'},
+ 'reason': {'key': 'reason', 'type': 'str'},
+ 'message': {'key': 'message', 'type': 'str'},
+ }
+
+ def __init__(self, **kwargs):
+ super(CheckAvailabilityResponse, self).__init__(**kwargs)
+ self.is_available = kwargs.get('is_available', None)
+ self.reason = kwargs.get('reason', None)
+ self.message = kwargs.get('message', None)
class CloudError(Model):
@@ -217,6 +663,36 @@ class CloudError(Model):
}
+class DailySchedule(Model):
+ """Daily Schedule properties.
+
+ :param snapshots_to_keep: Daily snapshot count to keep
+ :type snapshots_to_keep: int
+ :param hour: Indicates which hour in UTC timezone a snapshot should be
+ taken
+ :type hour: int
+ :param minute: Indicates which minute snapshot should be taken
+ :type minute: int
+ :param used_bytes: Resource size in bytes, current storage usage for the
+ volume in bytes
+ :type used_bytes: long
+ """
+
+ _attribute_map = {
+ 'snapshots_to_keep': {'key': 'snapshotsToKeep', 'type': 'int'},
+ 'hour': {'key': 'hour', 'type': 'int'},
+ 'minute': {'key': 'minute', 'type': 'int'},
+ 'used_bytes': {'key': 'usedBytes', 'type': 'long'},
+ }
+
+ def __init__(self, **kwargs):
+ super(DailySchedule, self).__init__(**kwargs)
+ self.snapshots_to_keep = kwargs.get('snapshots_to_keep', None)
+ self.hour = kwargs.get('hour', None)
+ self.minute = kwargs.get('minute', None)
+ self.used_bytes = kwargs.get('used_bytes', None)
+
+
class Dimension(Model):
"""Dimension of blobs, possibly be blob type or access tier.
@@ -246,6 +722,24 @@ class ExportPolicyRule(Model):
:type unix_read_only: bool
:param unix_read_write: Read and write access
:type unix_read_write: bool
+ :param kerberos5_read_only: Kerberos5 Read only access. To be use with
+ swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5_read_only: bool
+ :param kerberos5_read_write: Kerberos5 Read and write access. To be use
+ with swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5_read_write: bool
+ :param kerberos5i_read_only: Kerberos5i Read only access. To be use with
+ swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5i_read_only: bool
+ :param kerberos5i_read_write: Kerberos5i Read and write access. To be use
+ with swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5i_read_write: bool
+ :param kerberos5p_read_only: Kerberos5p Read only access. To be use with
+ swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5p_read_only: bool
+ :param kerberos5p_read_write: Kerberos5p Read and write access. To be use
+ with swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5p_read_write: bool
:param cifs: Allows CIFS protocol
:type cifs: bool
:param nfsv3: Allows NFSv3 protocol. Enable only for NFSv3 type volumes
@@ -256,16 +750,25 @@ class ExportPolicyRule(Model):
:param allowed_clients: Client ingress specification as comma separated
string with IPv4 CIDRs, IPv4 host addresses and host names
:type allowed_clients: str
+ :param has_root_access: Has root access to volume. Default value: True .
+ :type has_root_access: bool
"""
_attribute_map = {
'rule_index': {'key': 'ruleIndex', 'type': 'int'},
'unix_read_only': {'key': 'unixReadOnly', 'type': 'bool'},
'unix_read_write': {'key': 'unixReadWrite', 'type': 'bool'},
+ 'kerberos5_read_only': {'key': 'kerberos5ReadOnly', 'type': 'bool'},
+ 'kerberos5_read_write': {'key': 'kerberos5ReadWrite', 'type': 'bool'},
+ 'kerberos5i_read_only': {'key': 'kerberos5iReadOnly', 'type': 'bool'},
+ 'kerberos5i_read_write': {'key': 'kerberos5iReadWrite', 'type': 'bool'},
+ 'kerberos5p_read_only': {'key': 'kerberos5pReadOnly', 'type': 'bool'},
+ 'kerberos5p_read_write': {'key': 'kerberos5pReadWrite', 'type': 'bool'},
'cifs': {'key': 'cifs', 'type': 'bool'},
'nfsv3': {'key': 'nfsv3', 'type': 'bool'},
'nfsv41': {'key': 'nfsv41', 'type': 'bool'},
'allowed_clients': {'key': 'allowedClients', 'type': 'str'},
+ 'has_root_access': {'key': 'hasRootAccess', 'type': 'bool'},
}
def __init__(self, **kwargs):
@@ -273,10 +776,42 @@ def __init__(self, **kwargs):
self.rule_index = kwargs.get('rule_index', None)
self.unix_read_only = kwargs.get('unix_read_only', None)
self.unix_read_write = kwargs.get('unix_read_write', None)
+ self.kerberos5_read_only = kwargs.get('kerberos5_read_only', False)
+ self.kerberos5_read_write = kwargs.get('kerberos5_read_write', False)
+ self.kerberos5i_read_only = kwargs.get('kerberos5i_read_only', False)
+ self.kerberos5i_read_write = kwargs.get('kerberos5i_read_write', False)
+ self.kerberos5p_read_only = kwargs.get('kerberos5p_read_only', False)
+ self.kerberos5p_read_write = kwargs.get('kerberos5p_read_write', False)
self.cifs = kwargs.get('cifs', None)
self.nfsv3 = kwargs.get('nfsv3', None)
self.nfsv41 = kwargs.get('nfsv41', None)
self.allowed_clients = kwargs.get('allowed_clients', None)
+ self.has_root_access = kwargs.get('has_root_access', True)
+
+
+class HourlySchedule(Model):
+ """Hourly Schedule properties.
+
+ :param snapshots_to_keep: Hourly snapshot count to keep
+ :type snapshots_to_keep: int
+ :param minute: Indicates which minute snapshot should be taken
+ :type minute: int
+ :param used_bytes: Resource size in bytes, current storage usage for the
+ volume in bytes
+ :type used_bytes: long
+ """
+
+ _attribute_map = {
+ 'snapshots_to_keep': {'key': 'snapshotsToKeep', 'type': 'int'},
+ 'minute': {'key': 'minute', 'type': 'int'},
+ 'used_bytes': {'key': 'usedBytes', 'type': 'long'},
+ }
+
+ def __init__(self, **kwargs):
+ super(HourlySchedule, self).__init__(**kwargs)
+ self.snapshots_to_keep = kwargs.get('snapshots_to_keep', None)
+ self.minute = kwargs.get('minute', None)
+ self.used_bytes = kwargs.get('used_bytes', None)
class MetricSpecification(Model):
@@ -330,6 +865,41 @@ def __init__(self, **kwargs):
self.resource_id_dimension_name_override = kwargs.get('resource_id_dimension_name_override', None)
+class MonthlySchedule(Model):
+ """Monthly Schedule properties.
+
+ :param snapshots_to_keep: Monthly snapshot count to keep
+ :type snapshots_to_keep: int
+ :param days_of_month: Indicates which days of the month snapshot should be
+ taken. A comma delimited string.
+ :type days_of_month: str
+ :param hour: Indicates which hour in UTC timezone a snapshot should be
+ taken
+ :type hour: int
+ :param minute: Indicates which minute snapshot should be taken
+ :type minute: int
+ :param used_bytes: Resource size in bytes, current storage usage for the
+ volume in bytes
+ :type used_bytes: long
+ """
+
+ _attribute_map = {
+ 'snapshots_to_keep': {'key': 'snapshotsToKeep', 'type': 'int'},
+ 'days_of_month': {'key': 'daysOfMonth', 'type': 'str'},
+ 'hour': {'key': 'hour', 'type': 'int'},
+ 'minute': {'key': 'minute', 'type': 'int'},
+ 'used_bytes': {'key': 'usedBytes', 'type': 'long'},
+ }
+
+ def __init__(self, **kwargs):
+ super(MonthlySchedule, self).__init__(**kwargs)
+ self.snapshots_to_keep = kwargs.get('snapshots_to_keep', None)
+ self.days_of_month = kwargs.get('days_of_month', None)
+ self.hour = kwargs.get('hour', None)
+ self.minute = kwargs.get('minute', None)
+ self.used_bytes = kwargs.get('used_bytes', None)
+
+
class MountTarget(Model):
"""Mount Target.
@@ -356,20 +926,6 @@ class MountTarget(Model):
:type file_system_id: str
:ivar ip_address: ipAddress. The mount target's IPv4 address
:vartype ip_address: str
- :param subnet: subnet. The subnet
- :type subnet: str
- :param start_ip: startIp. The start of IPv4 address range to use when
- creating a new mount target
- :type start_ip: str
- :param end_ip: endIp. The end of IPv4 address range to use when creating a
- new mount target
- :type end_ip: str
- :param gateway: gateway. The gateway of the IPv4 address range to use when
- creating a new mount target
- :type gateway: str
- :param netmask: netmask. The netmask of the IPv4 address range to use when
- creating a new mount target
- :type netmask: str
:param smb_server_fqdn: smbServerFQDN. The SMB server's Fully Qualified
Domain Name, FQDN
:type smb_server_fqdn: str
@@ -394,11 +950,6 @@ class MountTarget(Model):
'mount_target_id': {'key': 'properties.mountTargetId', 'type': 'str'},
'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'},
'ip_address': {'key': 'properties.ipAddress', 'type': 'str'},
- 'subnet': {'key': 'properties.subnet', 'type': 'str'},
- 'start_ip': {'key': 'properties.startIp', 'type': 'str'},
- 'end_ip': {'key': 'properties.endIp', 'type': 'str'},
- 'gateway': {'key': 'properties.gateway', 'type': 'str'},
- 'netmask': {'key': 'properties.netmask', 'type': 'str'},
'smb_server_fqdn': {'key': 'properties.smbServerFqdn', 'type': 'str'},
}
@@ -412,11 +963,6 @@ def __init__(self, **kwargs):
self.mount_target_id = None
self.file_system_id = kwargs.get('file_system_id', None)
self.ip_address = None
- self.subnet = kwargs.get('subnet', None)
- self.start_ip = kwargs.get('start_ip', None)
- self.end_ip = kwargs.get('end_ip', None)
- self.gateway = kwargs.get('gateway', None)
- self.netmask = kwargs.get('netmask', None)
self.smb_server_fqdn = kwargs.get('smb_server_fqdn', None)
@@ -436,20 +982,6 @@ class MountTargetProperties(Model):
:type file_system_id: str
:ivar ip_address: ipAddress. The mount target's IPv4 address
:vartype ip_address: str
- :param subnet: subnet. The subnet
- :type subnet: str
- :param start_ip: startIp. The start of IPv4 address range to use when
- creating a new mount target
- :type start_ip: str
- :param end_ip: endIp. The end of IPv4 address range to use when creating a
- new mount target
- :type end_ip: str
- :param gateway: gateway. The gateway of the IPv4 address range to use when
- creating a new mount target
- :type gateway: str
- :param netmask: netmask. The netmask of the IPv4 address range to use when
- creating a new mount target
- :type netmask: str
:param smb_server_fqdn: smbServerFQDN. The SMB server's Fully Qualified
Domain Name, FQDN
:type smb_server_fqdn: str
@@ -465,11 +997,6 @@ class MountTargetProperties(Model):
'mount_target_id': {'key': 'mountTargetId', 'type': 'str'},
'file_system_id': {'key': 'fileSystemId', 'type': 'str'},
'ip_address': {'key': 'ipAddress', 'type': 'str'},
- 'subnet': {'key': 'subnet', 'type': 'str'},
- 'start_ip': {'key': 'startIp', 'type': 'str'},
- 'end_ip': {'key': 'endIp', 'type': 'str'},
- 'gateway': {'key': 'gateway', 'type': 'str'},
- 'netmask': {'key': 'netmask', 'type': 'str'},
'smb_server_fqdn': {'key': 'smbServerFqdn', 'type': 'str'},
}
@@ -478,11 +1005,6 @@ def __init__(self, **kwargs):
self.mount_target_id = None
self.file_system_id = kwargs.get('file_system_id', None)
self.ip_address = None
- self.subnet = kwargs.get('subnet', None)
- self.start_ip = kwargs.get('start_ip', None)
- self.end_ip = kwargs.get('end_ip', None)
- self.gateway = kwargs.get('gateway', None)
- self.netmask = kwargs.get('netmask', None)
self.smb_server_fqdn = kwargs.get('smb_server_fqdn', None)
@@ -633,18 +1155,77 @@ class OperationDisplay(Model):
"""
_attribute_map = {
- 'provider': {'key': 'provider', 'type': 'str'},
- 'resource': {'key': 'resource', 'type': 'str'},
- 'operation': {'key': 'operation', 'type': 'str'},
- 'description': {'key': 'description', 'type': 'str'},
+ 'provider': {'key': 'provider', 'type': 'str'},
+ 'resource': {'key': 'resource', 'type': 'str'},
+ 'operation': {'key': 'operation', 'type': 'str'},
+ 'description': {'key': 'description', 'type': 'str'},
+ }
+
+ def __init__(self, **kwargs):
+ super(OperationDisplay, self).__init__(**kwargs)
+ self.provider = kwargs.get('provider', None)
+ self.resource = kwargs.get('resource', None)
+ self.operation = kwargs.get('operation', None)
+ self.description = kwargs.get('description', None)
+
+
+class PoolChangeRequest(Model):
+ """Pool change request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param new_pool_resource_id: Required. Resource id of the pool to move
+ volume to
+ :type new_pool_resource_id: str
+ """
+
+ _validation = {
+ 'new_pool_resource_id': {'required': True},
+ }
+
+ _attribute_map = {
+ 'new_pool_resource_id': {'key': 'newPoolResourceId', 'type': 'str'},
+ }
+
+ def __init__(self, **kwargs):
+ super(PoolChangeRequest, self).__init__(**kwargs)
+ self.new_pool_resource_id = kwargs.get('new_pool_resource_id', None)
+
+
+class QuotaAvailabilityRequest(Model):
+ """Quota availability request content.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param name: Required. Name of the resource to verify.
+ :type name: str
+ :param type: Required. Resource type used for verification. Possible
+ values include: 'Microsoft.NetApp/netAppAccounts',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots'
+ :type type: str or ~azure.mgmt.netapp.models.CheckQuotaNameResourceTypes
+ :param resource_group: Required. Resource group name.
+ :type resource_group: str
+ """
+
+ _validation = {
+ 'name': {'required': True},
+ 'type': {'required': True},
+ 'resource_group': {'required': True},
+ }
+
+ _attribute_map = {
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'resource_group': {'key': 'resourceGroup', 'type': 'str'},
}
def __init__(self, **kwargs):
- super(OperationDisplay, self).__init__(**kwargs)
- self.provider = kwargs.get('provider', None)
- self.resource = kwargs.get('resource', None)
- self.operation = kwargs.get('operation', None)
- self.description = kwargs.get('description', None)
+ super(QuotaAvailabilityRequest, self).__init__(**kwargs)
+ self.name = kwargs.get('name', None)
+ self.type = kwargs.get('type', None)
+ self.resource_group = kwargs.get('resource_group', None)
class ReplicationObject(Model):
@@ -728,39 +1309,6 @@ def __init__(self, **kwargs):
self.error_message = kwargs.get('error_message', None)
-class ResourceNameAvailability(Model):
- """Information regarding availability of a resource name.
-
- :param is_available: true indicates name is valid and
- available. false indicates the name is invalid, unavailable,
- or both.
- :type is_available: bool
- :param reason: Invalid indicates the name provided does not
- match Azure App Service naming requirements. AlreadyExists
- indicates that the name is already in use and is therefore unavailable.
- Possible values include: 'Invalid', 'AlreadyExists'
- :type reason: str or ~azure.mgmt.netapp.models.InAvailabilityReasonType
- :param 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. If reason == AlreadyExists, explain
- that resource name is already in use, and direct them to select a
- different name.
- :type message: str
- """
-
- _attribute_map = {
- 'is_available': {'key': 'isAvailable', 'type': 'bool'},
- 'reason': {'key': 'reason', 'type': 'str'},
- 'message': {'key': 'message', 'type': 'str'},
- }
-
- def __init__(self, **kwargs):
- super(ResourceNameAvailability, self).__init__(**kwargs)
- self.is_available = kwargs.get('is_available', None)
- self.reason = kwargs.get('reason', None)
- self.message = kwargs.get('message', None)
-
-
class ResourceNameAvailabilityRequest(Model):
"""Resource name availability request content.
@@ -869,6 +1417,252 @@ def __init__(self, **kwargs):
self.provisioning_state = None
+class SnapshotPolicy(Model):
+ """Snapshot policy information.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param location: Required. Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :param hourly_schedule: hourlySchedule. Schedule for hourly snapshots
+ :type hourly_schedule: object
+ :param daily_schedule: dailySchedule. Schedule for daily snapshots
+ :type daily_schedule: object
+ :param weekly_schedule: weeklySchedule. Schedule for weekly snapshots
+ :type weekly_schedule: object
+ :param monthly_schedule: monthlySchedule. Schedule for monthly snapshots
+ :type monthly_schedule: object
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ """
+
+ _validation = {
+ 'location': {'required': True},
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'hourly_schedule': {'key': 'properties.hourlySchedule', 'type': 'object'},
+ 'daily_schedule': {'key': 'properties.dailySchedule', 'type': 'object'},
+ 'weekly_schedule': {'key': 'properties.weeklySchedule', 'type': 'object'},
+ 'monthly_schedule': {'key': 'properties.monthlySchedule', 'type': 'object'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ }
+
+ def __init__(self, **kwargs):
+ super(SnapshotPolicy, self).__init__(**kwargs)
+ self.location = kwargs.get('location', None)
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = kwargs.get('tags', None)
+ self.hourly_schedule = kwargs.get('hourly_schedule', None)
+ self.daily_schedule = kwargs.get('daily_schedule', None)
+ self.weekly_schedule = kwargs.get('weekly_schedule', None)
+ self.monthly_schedule = kwargs.get('monthly_schedule', None)
+ self.enabled = kwargs.get('enabled', None)
+
+
+class SnapshotPolicyDetails(Model):
+ """Snapshot policy properties.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param location: Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :param hourly_schedule: hourlySchedule. Schedule for hourly snapshots
+ :type hourly_schedule: object
+ :param daily_schedule: dailySchedule. Schedule for daily snapshots
+ :type daily_schedule: object
+ :param weekly_schedule: weeklySchedule. Schedule for weekly snapshots
+ :type weekly_schedule: object
+ :param monthly_schedule: monthlySchedule. Schedule for monthly snapshots
+ :type monthly_schedule: object
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ """
+
+ _validation = {
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'hourly_schedule': {'key': 'properties.hourlySchedule', 'type': 'object'},
+ 'daily_schedule': {'key': 'properties.dailySchedule', 'type': 'object'},
+ 'weekly_schedule': {'key': 'properties.weeklySchedule', 'type': 'object'},
+ 'monthly_schedule': {'key': 'properties.monthlySchedule', 'type': 'object'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ }
+
+ def __init__(self, **kwargs):
+ super(SnapshotPolicyDetails, self).__init__(**kwargs)
+ self.location = kwargs.get('location', None)
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = kwargs.get('tags', None)
+ self.hourly_schedule = kwargs.get('hourly_schedule', None)
+ self.daily_schedule = kwargs.get('daily_schedule', None)
+ self.weekly_schedule = kwargs.get('weekly_schedule', None)
+ self.monthly_schedule = kwargs.get('monthly_schedule', None)
+ self.enabled = kwargs.get('enabled', None)
+
+
+class SnapshotPolicyPatch(Model):
+ """Snapshot policy Details for create and update.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param location: Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :param hourly_schedule: hourlySchedule. Schedule for hourly snapshots
+ :type hourly_schedule: object
+ :param daily_schedule: dailySchedule. Schedule for daily snapshots
+ :type daily_schedule: object
+ :param weekly_schedule: weeklySchedule. Schedule for weekly snapshots
+ :type weekly_schedule: object
+ :param monthly_schedule: monthlySchedule. Schedule for monthly snapshots
+ :type monthly_schedule: object
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ """
+
+ _validation = {
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'hourly_schedule': {'key': 'properties.hourlySchedule', 'type': 'object'},
+ 'daily_schedule': {'key': 'properties.dailySchedule', 'type': 'object'},
+ 'weekly_schedule': {'key': 'properties.weeklySchedule', 'type': 'object'},
+ 'monthly_schedule': {'key': 'properties.monthlySchedule', 'type': 'object'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ }
+
+ def __init__(self, **kwargs):
+ super(SnapshotPolicyPatch, self).__init__(**kwargs)
+ self.location = kwargs.get('location', None)
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = kwargs.get('tags', None)
+ self.hourly_schedule = kwargs.get('hourly_schedule', None)
+ self.daily_schedule = kwargs.get('daily_schedule', None)
+ self.weekly_schedule = kwargs.get('weekly_schedule', None)
+ self.monthly_schedule = kwargs.get('monthly_schedule', None)
+ self.enabled = kwargs.get('enabled', None)
+
+
+class SnapshotPolicyVolumeList(Model):
+ """Volumes associated with snapshot policy.
+
+ :param value: List of volumes
+ :type value: list[object]
+ """
+
+ _attribute_map = {
+ 'value': {'key': 'value', 'type': '[object]'},
+ }
+
+ def __init__(self, **kwargs):
+ super(SnapshotPolicyVolumeList, self).__init__(**kwargs)
+ self.value = kwargs.get('value', None)
+
+
+class Vault(Model):
+ """Vault information.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param location: Required. Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param vault_name: Vault Name
+ :type vault_name: str
+ """
+
+ _validation = {
+ 'location': {'required': True},
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'vault_name': {'key': 'properties.vaultName', 'type': 'str'},
+ }
+
+ def __init__(self, **kwargs):
+ super(Vault, self).__init__(**kwargs)
+ self.location = kwargs.get('location', None)
+ self.id = None
+ self.name = None
+ self.type = None
+ self.vault_name = kwargs.get('vault_name', None)
+
+
class Volume(Model):
"""Volume resource.
@@ -911,6 +1705,9 @@ class Volume(Model):
:param snapshot_id: Snapshot ID. UUID v4 or resource identifier used to
identify the Snapshot.
:type snapshot_id: str
+ :param backup_id: Backup ID. UUID v4 or resource identifier used to
+ identify the Backup.
+ :type backup_id: str
:ivar baremetal_tenant_id: Baremetal Tenant ID. Unique Baremetal Tenant
Identifier.
:vartype baremetal_tenant_id: str
@@ -931,6 +1728,15 @@ class Volume(Model):
contain a read-only .snapshot directory which provides access to each of
the volume's snapshots (default to true).
:type snapshot_directory_visible: bool
+ :param kerberos_enabled: Describe if a volume is KerberosEnabled. To be
+ use with swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos_enabled: bool
+ :param security_style: The security style of volume. Possible values
+ include: 'ntfs', 'unix'
+ :type security_style: str or ~azure.mgmt.netapp.models.SecurityStyle
+ :param throughput_mibps: Maximum throughput in Mibps that can be achieved
+ by this volume.
+ :type throughput_mibps: float
"""
_validation = {
@@ -943,8 +1749,10 @@ class Volume(Model):
'usage_threshold': {'required': True, 'maximum': 109951162777600, 'minimum': 107374182400},
'provisioning_state': {'readonly': True},
'snapshot_id': {'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}|(\\?([^\/]*[\/])*)([^\/]+)$'},
+ 'backup_id': {'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}|(\\?([^\/]*[\/])*)([^\/]+)$'},
'baremetal_tenant_id': {'readonly': True, 'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'},
'subnet_id': {'required': True},
+ 'throughput_mibps': {'maximum': 4500, 'minimum': 1, 'multiple': 0.001},
}
_attribute_map = {
@@ -961,6 +1769,7 @@ class Volume(Model):
'protocol_types': {'key': 'properties.protocolTypes', 'type': '[str]'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'},
+ 'backup_id': {'key': 'properties.backupId', 'type': 'str'},
'baremetal_tenant_id': {'key': 'properties.baremetalTenantId', 'type': 'str'},
'subnet_id': {'key': 'properties.subnetId', 'type': 'str'},
'mount_targets': {'key': 'properties.mountTargets', 'type': '[MountTargetProperties]'},
@@ -968,6 +1777,9 @@ class Volume(Model):
'data_protection': {'key': 'properties.dataProtection', 'type': 'VolumePropertiesDataProtection'},
'is_restoring': {'key': 'properties.isRestoring', 'type': 'bool'},
'snapshot_directory_visible': {'key': 'properties.snapshotDirectoryVisible', 'type': 'bool'},
+ 'kerberos_enabled': {'key': 'properties.kerberosEnabled', 'type': 'bool'},
+ 'security_style': {'key': 'properties.securityStyle', 'type': 'str'},
+ 'throughput_mibps': {'key': 'properties.throughputMibps', 'type': 'float'},
}
def __init__(self, **kwargs):
@@ -985,6 +1797,7 @@ def __init__(self, **kwargs):
self.protocol_types = kwargs.get('protocol_types', None)
self.provisioning_state = None
self.snapshot_id = kwargs.get('snapshot_id', None)
+ self.backup_id = kwargs.get('backup_id', None)
self.baremetal_tenant_id = None
self.subnet_id = kwargs.get('subnet_id', None)
self.mount_targets = kwargs.get('mount_targets', None)
@@ -992,6 +1805,61 @@ def __init__(self, **kwargs):
self.data_protection = kwargs.get('data_protection', None)
self.is_restoring = kwargs.get('is_restoring', None)
self.snapshot_directory_visible = kwargs.get('snapshot_directory_visible', None)
+ self.kerberos_enabled = kwargs.get('kerberos_enabled', False)
+ self.security_style = kwargs.get('security_style', None)
+ self.throughput_mibps = kwargs.get('throughput_mibps', None)
+
+
+class VolumeBackupProperties(Model):
+ """Volume Backup Properties.
+
+ :param backup_policy_id: Backup Policy Resource ID
+ :type backup_policy_id: str
+ :param policy_enforced: Policy Enforced
+ :type policy_enforced: bool
+ :param vault_id: Vault Resource ID
+ :type vault_id: str
+ :param backup_enabled: Backup Enabled
+ :type backup_enabled: bool
+ """
+
+ _attribute_map = {
+ 'backup_policy_id': {'key': 'backupPolicyId', 'type': 'str'},
+ 'policy_enforced': {'key': 'policyEnforced', 'type': 'bool'},
+ 'vault_id': {'key': 'vaultId', 'type': 'str'},
+ 'backup_enabled': {'key': 'backupEnabled', 'type': 'bool'},
+ }
+
+ def __init__(self, **kwargs):
+ super(VolumeBackupProperties, self).__init__(**kwargs)
+ self.backup_policy_id = kwargs.get('backup_policy_id', None)
+ self.policy_enforced = kwargs.get('policy_enforced', None)
+ self.vault_id = kwargs.get('vault_id', None)
+ self.backup_enabled = kwargs.get('backup_enabled', None)
+
+
+class VolumeBackups(Model):
+ """Volume details using the backup policy.
+
+ :param volume_name: Volume name
+ :type volume_name: str
+ :param backups_count: Total count of backups for volume
+ :type backups_count: int
+ :param policy_enabled: Policy enabled
+ :type policy_enabled: bool
+ """
+
+ _attribute_map = {
+ 'volume_name': {'key': 'volumeName', 'type': 'str'},
+ 'backups_count': {'key': 'backupsCount', 'type': 'int'},
+ 'policy_enabled': {'key': 'policyEnabled', 'type': 'bool'},
+ }
+
+ def __init__(self, **kwargs):
+ super(VolumeBackups, self).__init__(**kwargs)
+ self.volume_name = kwargs.get('volume_name', None)
+ self.backups_count = kwargs.get('backups_count', None)
+ self.policy_enabled = kwargs.get('policy_enabled', None)
class VolumePatch(Model):
@@ -1022,6 +1890,13 @@ class VolumePatch(Model):
:param export_policy: exportPolicy. Set of export policy rules
:type export_policy:
~azure.mgmt.netapp.models.VolumePatchPropertiesExportPolicy
+ :param throughput_mibps: Maximum throughput in Mibps that can be achieved
+ by this volume.
+ :type throughput_mibps: float
+ :param data_protection: DataProtection. DataProtection type volumes
+ include an object containing details of the replication
+ :type data_protection:
+ ~azure.mgmt.netapp.models.VolumePatchPropertiesDataProtection
"""
_validation = {
@@ -1029,6 +1904,7 @@ class VolumePatch(Model):
'name': {'readonly': True},
'type': {'readonly': True},
'usage_threshold': {'maximum': 109951162777600, 'minimum': 107374182400},
+ 'throughput_mibps': {'maximum': 4500, 'minimum': 1, 'multiple': 0.001},
}
_attribute_map = {
@@ -1040,6 +1916,8 @@ class VolumePatch(Model):
'service_level': {'key': 'properties.serviceLevel', 'type': 'str'},
'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'},
'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePatchPropertiesExportPolicy'},
+ 'throughput_mibps': {'key': 'properties.throughputMibps', 'type': 'float'},
+ 'data_protection': {'key': 'properties.dataProtection', 'type': 'VolumePatchPropertiesDataProtection'},
}
def __init__(self, **kwargs):
@@ -1052,6 +1930,27 @@ def __init__(self, **kwargs):
self.service_level = kwargs.get('service_level', "Premium")
self.usage_threshold = kwargs.get('usage_threshold', 107374182400)
self.export_policy = kwargs.get('export_policy', None)
+ self.throughput_mibps = kwargs.get('throughput_mibps', None)
+ self.data_protection = kwargs.get('data_protection', None)
+
+
+class VolumePatchPropertiesDataProtection(Model):
+ """DataProtection.
+
+ DataProtection type volumes include an object containing details of the
+ replication.
+
+ :param backup: Backup. Backup Properties
+ :type backup: ~azure.mgmt.netapp.models.VolumeBackupProperties
+ """
+
+ _attribute_map = {
+ 'backup': {'key': 'backup', 'type': 'VolumeBackupProperties'},
+ }
+
+ def __init__(self, **kwargs):
+ super(VolumePatchPropertiesDataProtection, self).__init__(**kwargs)
+ self.backup = kwargs.get('backup', None)
class VolumePatchPropertiesExportPolicy(Model):
@@ -1078,6 +1977,8 @@ class VolumePropertiesDataProtection(Model):
DataProtection type volumes include an object containing details of the
replication.
+ :param backup: Backup. Backup Properties
+ :type backup: ~azure.mgmt.netapp.models.VolumeBackupProperties
:param replication: Replication. Replication properties
:type replication: ~azure.mgmt.netapp.models.ReplicationObject
:param snapshot: Snapshot. Snapshot properties.
@@ -1085,12 +1986,14 @@ class VolumePropertiesDataProtection(Model):
"""
_attribute_map = {
+ 'backup': {'key': 'backup', 'type': 'VolumeBackupProperties'},
'replication': {'key': 'replication', 'type': 'ReplicationObject'},
'snapshot': {'key': 'snapshot', 'type': 'VolumeSnapshotProperties'},
}
def __init__(self, **kwargs):
super(VolumePropertiesDataProtection, self).__init__(**kwargs)
+ self.backup = kwargs.get('backup', None)
self.replication = kwargs.get('replication', None)
self.snapshot = kwargs.get('snapshot', None)
@@ -1143,3 +2046,39 @@ class VolumeSnapshotProperties(Model):
def __init__(self, **kwargs):
super(VolumeSnapshotProperties, self).__init__(**kwargs)
self.snapshot_policy_id = kwargs.get('snapshot_policy_id', None)
+
+
+class WeeklySchedule(Model):
+ """Weekly Schedule properties, make a snapshot every week at a specific day or
+ days.
+
+ :param snapshots_to_keep: Weekly snapshot count to keep
+ :type snapshots_to_keep: int
+ :param day: Indicates which weekdays snapshot should be taken, accepts a
+ comma separated list of week day names in english
+ :type day: str
+ :param hour: Indicates which hour in UTC timezone a snapshot should be
+ taken
+ :type hour: int
+ :param minute: Indicates which minute snapshot should be taken
+ :type minute: int
+ :param used_bytes: Resource size in bytes, current storage usage for the
+ volume in bytes
+ :type used_bytes: long
+ """
+
+ _attribute_map = {
+ 'snapshots_to_keep': {'key': 'snapshotsToKeep', 'type': 'int'},
+ 'day': {'key': 'day', 'type': 'str'},
+ 'hour': {'key': 'hour', 'type': 'int'},
+ 'minute': {'key': 'minute', 'type': 'int'},
+ 'used_bytes': {'key': 'usedBytes', 'type': 'long'},
+ }
+
+ def __init__(self, **kwargs):
+ super(WeeklySchedule, self).__init__(**kwargs)
+ self.snapshots_to_keep = kwargs.get('snapshots_to_keep', None)
+ self.day = kwargs.get('day', None)
+ self.hour = kwargs.get('hour', None)
+ self.minute = kwargs.get('minute', None)
+ self.used_bytes = kwargs.get('used_bytes', None)
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 7aea0af3da51..d15aba2ca480 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
@@ -15,20 +15,27 @@
class ActiveDirectory(Model):
"""Active Directory.
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
:param active_directory_id: Id of the Active Directory
:type active_directory_id: str
:param username: Username of Active Directory domain administrator
:type username: str
:param password: Plain text password of Active Directory domain
- administrator
+ administrator, value is masked in the response
:type password: str
:param domain: Name of the Active Directory domain
:type domain: str
:param dns: Comma separated list of DNS server IP addresses (IPv4 only)
for the Active Directory domain
:type dns: str
- :param status: Status of the Active Directory
- :type status: str
+ :ivar status: Status of the Active Directory. Possible values include:
+ '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
:param smb_server_name: NetBIOS name of the SMB server. This name will be
registered as a computer account in the AD and used to mount volumes
:type smb_server_name: str
@@ -42,8 +49,28 @@ class ActiveDirectory(Model):
active directory group. A list of unique usernames without domain
specifier
:type backup_operators: list[str]
+ :param kdc_ip: kdc server IP addresses for the active directory machine.
+ This optional parameter is used only while creating kerberos volume.
+ :type kdc_ip: str
+ :param ad_name: Name of the active directory machine. This optional
+ parameter is used only while creating kerberos volume
+ :type ad_name: str
+ :param server_root_ca_certificate: When LDAP over SSL/TLS is enabled, the
+ LDAP client is required to have base64 encoded Active Directory
+ Certificate Service's self-signed root CA certificate, this optional
+ parameter is used only for dual protocol with LDAP user-mapping volumes.
+ :type server_root_ca_certificate: str
"""
+ _validation = {
+ 'dns': {'pattern': r'^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)((, ?)(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))*$'},
+ 'status': {'readonly': True},
+ 'status_details': {'readonly': True},
+ 'kdc_ip': {'pattern': r'^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)((, ?)(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))*$'},
+ 'ad_name': {'max_length': 64, 'min_length': 1},
+ 'server_root_ca_certificate': {'max_length': 10240, 'min_length': 1},
+ }
+
_attribute_map = {
'active_directory_id': {'key': 'activeDirectoryId', 'type': 'str'},
'username': {'key': 'username', 'type': 'str'},
@@ -51,24 +78,32 @@ class ActiveDirectory(Model):
'domain': {'key': 'domain', 'type': 'str'},
'dns': {'key': 'dns', 'type': 'str'},
'status': {'key': 'status', 'type': 'str'},
+ 'status_details': {'key': 'statusDetails', 'type': 'str'},
'smb_server_name': {'key': 'smbServerName', 'type': 'str'},
'organizational_unit': {'key': 'organizationalUnit', 'type': 'str'},
'site': {'key': 'site', 'type': 'str'},
'backup_operators': {'key': 'backupOperators', 'type': '[str]'},
+ 'kdc_ip': {'key': 'kdcIP', 'type': 'str'},
+ 'ad_name': {'key': 'adName', 'type': 'str'},
+ 'server_root_ca_certificate': {'key': 'serverRootCACertificate', 'type': 'str'},
}
- def __init__(self, *, active_directory_id: str=None, username: str=None, password: str=None, domain: str=None, dns: str=None, status: str=None, smb_server_name: str=None, organizational_unit: str=None, site: str=None, backup_operators=None, **kwargs) -> None:
+ def __init__(self, *, active_directory_id: str=None, username: str=None, password: str=None, domain: str=None, dns: str=None, smb_server_name: str=None, organizational_unit: str=None, site: str=None, backup_operators=None, kdc_ip: str=None, ad_name: str=None, server_root_ca_certificate: str=None, **kwargs) -> None:
super(ActiveDirectory, self).__init__(**kwargs)
self.active_directory_id = active_directory_id
self.username = username
self.password = password
self.domain = domain
self.dns = dns
- self.status = status
+ self.status = None
+ self.status_details = None
self.smb_server_name = smb_server_name
self.organizational_unit = organizational_unit
self.site = site
self.backup_operators = backup_operators
+ self.kdc_ip = kdc_ip
+ self.ad_name = ad_name
+ self.server_root_ca_certificate = server_root_ca_certificate
class AuthorizeRequest(Model):
@@ -87,6 +122,370 @@ def __init__(self, *, remote_volume_resource_id: str=None, **kwargs) -> None:
self.remote_volume_resource_id = remote_volume_resource_id
+class Backup(Model):
+ """Backup of a Volume.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param location: Required. Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :ivar creation_date: name. The creation date of the backup
+ :vartype creation_date: datetime
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :ivar size: Size of backup
+ :vartype size: long
+ :param label: Label for backup
+ :type label: str
+ :ivar backup_type: Type of backup adhoc or scheduled
+ :vartype backup_type: str
+ """
+
+ _validation = {
+ 'location': {'required': True},
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ 'creation_date': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ 'size': {'readonly': True},
+ 'backup_type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'creation_date': {'key': 'properties.creationDate', 'type': 'iso-8601'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'size': {'key': 'properties.size', 'type': 'long'},
+ 'label': {'key': 'properties.label', 'type': 'str'},
+ 'backup_type': {'key': 'properties.backupType', 'type': 'str'},
+ }
+
+ def __init__(self, *, location: str, label: str=None, **kwargs) -> None:
+ super(Backup, self).__init__(**kwargs)
+ self.location = location
+ self.id = None
+ self.name = None
+ self.type = None
+ self.creation_date = None
+ self.provisioning_state = None
+ self.size = None
+ self.label = label
+ self.backup_type = None
+
+
+class BackupPatch(Model):
+ """Backup patch.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :ivar creation_date: name. The creation date of the backup
+ :vartype creation_date: datetime
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :ivar size: Size of backup
+ :vartype size: long
+ :param label: Label for backup
+ :type label: str
+ :ivar backup_type: Type of backup adhoc or scheduled
+ :vartype backup_type: str
+ """
+
+ _validation = {
+ 'creation_date': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ 'size': {'readonly': True},
+ 'backup_type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'creation_date': {'key': 'properties.creationDate', 'type': 'iso-8601'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'size': {'key': 'properties.size', 'type': 'long'},
+ 'label': {'key': 'properties.label', 'type': 'str'},
+ 'backup_type': {'key': 'properties.backupType', 'type': 'str'},
+ }
+
+ def __init__(self, *, tags=None, label: str=None, **kwargs) -> None:
+ super(BackupPatch, self).__init__(**kwargs)
+ self.tags = tags
+ self.creation_date = None
+ self.provisioning_state = None
+ self.size = None
+ self.label = label
+ self.backup_type = None
+
+
+class BackupPolicy(Model):
+ """Backup policy information.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param location: Required. Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :ivar name1: Name of backup policy
+ :vartype name1: str
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :param daily_backups_to_keep: Daily backups count to keep
+ :type daily_backups_to_keep: int
+ :param weekly_backups_to_keep: Weekly backups count to keep
+ :type weekly_backups_to_keep: int
+ :param monthly_backups_to_keep: Monthly backups count to keep
+ :type monthly_backups_to_keep: int
+ :param yearly_backups_to_keep: Yearly backups count to keep
+ :type yearly_backups_to_keep: int
+ :param volumes_assigned: Volumes using current backup policy
+ :type volumes_assigned: int
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ :param volume_backups: A list of volumes assigned to this policy
+ :type volume_backups: list[~azure.mgmt.netapp.models.VolumeBackups]
+ """
+
+ _validation = {
+ 'location': {'required': True},
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ 'name1': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'name1': {'key': 'properties.name', 'type': 'str'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'daily_backups_to_keep': {'key': 'properties.dailyBackupsToKeep', 'type': 'int'},
+ 'weekly_backups_to_keep': {'key': 'properties.weeklyBackupsToKeep', 'type': 'int'},
+ 'monthly_backups_to_keep': {'key': 'properties.monthlyBackupsToKeep', 'type': 'int'},
+ 'yearly_backups_to_keep': {'key': 'properties.yearlyBackupsToKeep', 'type': 'int'},
+ 'volumes_assigned': {'key': 'properties.volumesAssigned', 'type': 'int'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ 'volume_backups': {'key': 'properties.volumeBackups', 'type': '[VolumeBackups]'},
+ }
+
+ def __init__(self, *, location: str, tags=None, daily_backups_to_keep: int=None, weekly_backups_to_keep: int=None, monthly_backups_to_keep: int=None, yearly_backups_to_keep: int=None, volumes_assigned: int=None, enabled: bool=None, volume_backups=None, **kwargs) -> None:
+ super(BackupPolicy, self).__init__(**kwargs)
+ self.location = location
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = tags
+ self.name1 = None
+ self.provisioning_state = None
+ self.daily_backups_to_keep = daily_backups_to_keep
+ self.weekly_backups_to_keep = weekly_backups_to_keep
+ self.monthly_backups_to_keep = monthly_backups_to_keep
+ self.yearly_backups_to_keep = yearly_backups_to_keep
+ self.volumes_assigned = volumes_assigned
+ self.enabled = enabled
+ self.volume_backups = volume_backups
+
+
+class BackupPolicyDetails(Model):
+ """Backup policy properties.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param location: Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :ivar name1: Name of backup policy
+ :vartype name1: str
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :param daily_backups_to_keep: Daily backups count to keep
+ :type daily_backups_to_keep: int
+ :param weekly_backups_to_keep: Weekly backups count to keep
+ :type weekly_backups_to_keep: int
+ :param monthly_backups_to_keep: Monthly backups count to keep
+ :type monthly_backups_to_keep: int
+ :param yearly_backups_to_keep: Yearly backups count to keep
+ :type yearly_backups_to_keep: int
+ :param volumes_assigned: Volumes using current backup policy
+ :type volumes_assigned: int
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ :param volume_backups: A list of volumes assigned to this policy
+ :type volume_backups: list[~azure.mgmt.netapp.models.VolumeBackups]
+ """
+
+ _validation = {
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ 'name1': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'name1': {'key': 'properties.name', 'type': 'str'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'daily_backups_to_keep': {'key': 'properties.dailyBackupsToKeep', 'type': 'int'},
+ 'weekly_backups_to_keep': {'key': 'properties.weeklyBackupsToKeep', 'type': 'int'},
+ 'monthly_backups_to_keep': {'key': 'properties.monthlyBackupsToKeep', 'type': 'int'},
+ 'yearly_backups_to_keep': {'key': 'properties.yearlyBackupsToKeep', 'type': 'int'},
+ 'volumes_assigned': {'key': 'properties.volumesAssigned', 'type': 'int'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ 'volume_backups': {'key': 'properties.volumeBackups', 'type': '[VolumeBackups]'},
+ }
+
+ def __init__(self, *, location: str=None, tags=None, daily_backups_to_keep: int=None, weekly_backups_to_keep: int=None, monthly_backups_to_keep: int=None, yearly_backups_to_keep: int=None, volumes_assigned: int=None, enabled: bool=None, volume_backups=None, **kwargs) -> None:
+ super(BackupPolicyDetails, self).__init__(**kwargs)
+ self.location = location
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = tags
+ self.name1 = None
+ self.provisioning_state = None
+ self.daily_backups_to_keep = daily_backups_to_keep
+ self.weekly_backups_to_keep = weekly_backups_to_keep
+ self.monthly_backups_to_keep = monthly_backups_to_keep
+ self.yearly_backups_to_keep = yearly_backups_to_keep
+ self.volumes_assigned = volumes_assigned
+ self.enabled = enabled
+ self.volume_backups = volume_backups
+
+
+class BackupPolicyPatch(Model):
+ """Backup policy Details for create and update.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param location: Resource location
+ :type location: str
+ :ivar name: Name of backup policy
+ :vartype name: str
+ :ivar provisioning_state: Azure lifecycle management
+ :vartype provisioning_state: str
+ :param daily_backups_to_keep: Daily backups count to keep
+ :type daily_backups_to_keep: int
+ :param weekly_backups_to_keep: Weekly backups count to keep
+ :type weekly_backups_to_keep: int
+ :param monthly_backups_to_keep: Monthly backups count to keep
+ :type monthly_backups_to_keep: int
+ :param yearly_backups_to_keep: Yearly backups count to keep
+ :type yearly_backups_to_keep: int
+ :param volumes_assigned: Volumes using current backup policy
+ :type volumes_assigned: int
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ :param volume_backups: A list of volumes assigned to this policy
+ :type volume_backups: list[~azure.mgmt.netapp.models.VolumeBackups]
+ """
+
+ _validation = {
+ 'name': {'readonly': True},
+ 'provisioning_state': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'name': {'key': 'properties.name', 'type': 'str'},
+ 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'daily_backups_to_keep': {'key': 'properties.dailyBackupsToKeep', 'type': 'int'},
+ 'weekly_backups_to_keep': {'key': 'properties.weeklyBackupsToKeep', 'type': 'int'},
+ 'monthly_backups_to_keep': {'key': 'properties.monthlyBackupsToKeep', 'type': 'int'},
+ 'yearly_backups_to_keep': {'key': 'properties.yearlyBackupsToKeep', 'type': 'int'},
+ 'volumes_assigned': {'key': 'properties.volumesAssigned', 'type': 'int'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ 'volume_backups': {'key': 'properties.volumeBackups', 'type': '[VolumeBackups]'},
+ }
+
+ def __init__(self, *, location: str=None, daily_backups_to_keep: int=None, weekly_backups_to_keep: int=None, monthly_backups_to_keep: int=None, yearly_backups_to_keep: int=None, volumes_assigned: int=None, enabled: bool=None, volume_backups=None, **kwargs) -> None:
+ super(BackupPolicyPatch, self).__init__(**kwargs)
+ self.location = location
+ self.name = None
+ self.provisioning_state = None
+ self.daily_backups_to_keep = daily_backups_to_keep
+ self.weekly_backups_to_keep = weekly_backups_to_keep
+ self.monthly_backups_to_keep = monthly_backups_to_keep
+ self.yearly_backups_to_keep = yearly_backups_to_keep
+ self.volumes_assigned = volumes_assigned
+ self.enabled = enabled
+ self.volume_backups = volume_backups
+
+
+class BackupsList(Model):
+ """List of Backups.
+
+ :param value: A list of Backups
+ :type value: list[~azure.mgmt.netapp.models.Backup]
+ """
+
+ _attribute_map = {
+ 'value': {'key': 'value', 'type': '[Backup]'},
+ }
+
+ def __init__(self, *, value=None, **kwargs) -> None:
+ super(BackupsList, self).__init__(**kwargs)
+ self.value = value
+
+
+class BreakReplicationRequest(Model):
+ """Break replication request.
+
+ :param force_break_replication: If replication is in status transferring
+ and you want to force break the replication, set to true
+ :type force_break_replication: bool
+ """
+
+ _attribute_map = {
+ 'force_break_replication': {'key': 'forceBreakReplication', 'type': 'bool'},
+ }
+
+ def __init__(self, *, force_break_replication: bool=None, **kwargs) -> None:
+ super(BreakReplicationRequest, self).__init__(**kwargs)
+ self.force_break_replication = force_break_replication
+
+
class CapacityPool(Model):
"""Capacity pool resource.
@@ -117,6 +516,13 @@ class CapacityPool(Model):
:type 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
+ :vartype total_throughput_mibps: float
+ :ivar utilized_throughput_mibps: Utilized throughput of pool in Mibps
+ :vartype utilized_throughput_mibps: float
+ :param qos_type: qosType. The qos type of the pool. Possible values
+ include: 'Auto', 'Manual'. Default value: "Auto" .
+ :type qos_type: str or ~azure.mgmt.netapp.models.QosType
"""
_validation = {
@@ -128,6 +534,8 @@ class CapacityPool(Model):
'size': {'required': True, 'maximum': 549755813888000, 'minimum': 4398046511104},
'service_level': {'required': True},
'provisioning_state': {'readonly': True},
+ 'total_throughput_mibps': {'readonly': True, 'multiple': 0.001},
+ 'utilized_throughput_mibps': {'readonly': True, 'multiple': 0.001},
}
_attribute_map = {
@@ -140,9 +548,12 @@ class CapacityPool(Model):
'size': {'key': 'properties.size', 'type': 'long'},
'service_level': {'key': 'properties.serviceLevel', 'type': 'str'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
+ 'total_throughput_mibps': {'key': 'properties.totalThroughputMibps', 'type': 'float'},
+ 'utilized_throughput_mibps': {'key': 'properties.utilizedThroughputMibps', 'type': 'float'},
+ 'qos_type': {'key': 'properties.qosType', 'type': 'str'},
}
- def __init__(self, *, location: str, size: int, tags=None, service_level="Premium", **kwargs) -> None:
+ def __init__(self, *, location: str, size: int, tags=None, service_level="Premium", qos_type="Auto", **kwargs) -> None:
super(CapacityPool, self).__init__(**kwargs)
self.location = location
self.id = None
@@ -153,6 +564,9 @@ def __init__(self, *, location: str, size: int, tags=None, service_level="Premiu
self.size = size
self.service_level = service_level
self.provisioning_state = None
+ self.total_throughput_mibps = None
+ self.utilized_throughput_mibps = None
+ self.qos_type = qos_type
class CapacityPoolPatch(Model):
@@ -175,10 +589,9 @@ class CapacityPoolPatch(Model):
are in 4TiB chunks (value must be multiply of 4398046511104). Default
value: 4398046511104 .
:type size: long
- :param service_level: serviceLevel. The service level of the file system.
- Possible values include: 'Standard', 'Premium', 'Ultra'. Default value:
- "Premium" .
- :type service_level: str or ~azure.mgmt.netapp.models.ServiceLevel
+ :param qos_type: qosType. The qos type of the pool. Possible values
+ include: 'Auto', 'Manual'. Default value: "Auto" .
+ :type qos_type: str or ~azure.mgmt.netapp.models.QosType
"""
_validation = {
@@ -195,10 +608,10 @@ class CapacityPoolPatch(Model):
'type': {'key': 'type', 'type': 'str'},
'tags': {'key': 'tags', 'type': '{str}'},
'size': {'key': 'properties.size', 'type': 'long'},
- 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'},
+ 'qos_type': {'key': 'properties.qosType', 'type': 'str'},
}
- def __init__(self, *, location: str=None, tags=None, size: int=4398046511104, service_level="Premium", **kwargs) -> None:
+ def __init__(self, *, location: str=None, tags=None, size: int=4398046511104, qos_type="Auto", **kwargs) -> None:
super(CapacityPoolPatch, self).__init__(**kwargs)
self.location = location
self.id = None
@@ -206,7 +619,40 @@ def __init__(self, *, location: str=None, tags=None, size: int=4398046511104, se
self.type = None
self.tags = tags
self.size = size
- self.service_level = service_level
+ self.qos_type = qos_type
+
+
+class CheckAvailabilityResponse(Model):
+ """Information regarding availability of a resource.
+
+ :param is_available: true indicates name is valid and
+ available. false indicates the name is invalid, unavailable,
+ or both.
+ :type is_available: bool
+ :param reason: Invalid indicates the name provided does not
+ match Azure App Service naming requirements. AlreadyExists
+ indicates that the name is already in use and is therefore unavailable.
+ Possible values include: 'Invalid', 'AlreadyExists'
+ :type reason: str or ~azure.mgmt.netapp.models.InAvailabilityReasonType
+ :param 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. If reason == AlreadyExists, explain
+ that resource name is already in use, and direct them to select a
+ different name.
+ :type message: str
+ """
+
+ _attribute_map = {
+ 'is_available': {'key': 'isAvailable', 'type': 'bool'},
+ 'reason': {'key': 'reason', 'type': 'str'},
+ 'message': {'key': 'message', 'type': 'str'},
+ }
+
+ def __init__(self, *, is_available: bool=None, reason=None, message: str=None, **kwargs) -> None:
+ super(CheckAvailabilityResponse, self).__init__(**kwargs)
+ self.is_available = is_available
+ self.reason = reason
+ self.message = message
class CloudError(Model):
@@ -217,6 +663,36 @@ class CloudError(Model):
}
+class DailySchedule(Model):
+ """Daily Schedule properties.
+
+ :param snapshots_to_keep: Daily snapshot count to keep
+ :type snapshots_to_keep: int
+ :param hour: Indicates which hour in UTC timezone a snapshot should be
+ taken
+ :type hour: int
+ :param minute: Indicates which minute snapshot should be taken
+ :type minute: int
+ :param used_bytes: Resource size in bytes, current storage usage for the
+ volume in bytes
+ :type used_bytes: long
+ """
+
+ _attribute_map = {
+ 'snapshots_to_keep': {'key': 'snapshotsToKeep', 'type': 'int'},
+ 'hour': {'key': 'hour', 'type': 'int'},
+ 'minute': {'key': 'minute', 'type': 'int'},
+ 'used_bytes': {'key': 'usedBytes', 'type': 'long'},
+ }
+
+ def __init__(self, *, snapshots_to_keep: int=None, hour: int=None, minute: int=None, used_bytes: int=None, **kwargs) -> None:
+ super(DailySchedule, self).__init__(**kwargs)
+ self.snapshots_to_keep = snapshots_to_keep
+ self.hour = hour
+ self.minute = minute
+ self.used_bytes = used_bytes
+
+
class Dimension(Model):
"""Dimension of blobs, possibly be blob type or access tier.
@@ -246,6 +722,24 @@ class ExportPolicyRule(Model):
:type unix_read_only: bool
:param unix_read_write: Read and write access
:type unix_read_write: bool
+ :param kerberos5_read_only: Kerberos5 Read only access. To be use with
+ swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5_read_only: bool
+ :param kerberos5_read_write: Kerberos5 Read and write access. To be use
+ with swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5_read_write: bool
+ :param kerberos5i_read_only: Kerberos5i Read only access. To be use with
+ swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5i_read_only: bool
+ :param kerberos5i_read_write: Kerberos5i Read and write access. To be use
+ with swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5i_read_write: bool
+ :param kerberos5p_read_only: Kerberos5p Read only access. To be use with
+ swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5p_read_only: bool
+ :param kerberos5p_read_write: Kerberos5p Read and write access. To be use
+ with swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos5p_read_write: bool
:param cifs: Allows CIFS protocol
:type cifs: bool
:param nfsv3: Allows NFSv3 protocol. Enable only for NFSv3 type volumes
@@ -256,27 +750,68 @@ class ExportPolicyRule(Model):
:param allowed_clients: Client ingress specification as comma separated
string with IPv4 CIDRs, IPv4 host addresses and host names
:type allowed_clients: str
+ :param has_root_access: Has root access to volume. Default value: True .
+ :type has_root_access: bool
"""
_attribute_map = {
'rule_index': {'key': 'ruleIndex', 'type': 'int'},
'unix_read_only': {'key': 'unixReadOnly', 'type': 'bool'},
'unix_read_write': {'key': 'unixReadWrite', 'type': 'bool'},
+ 'kerberos5_read_only': {'key': 'kerberos5ReadOnly', 'type': 'bool'},
+ 'kerberos5_read_write': {'key': 'kerberos5ReadWrite', 'type': 'bool'},
+ 'kerberos5i_read_only': {'key': 'kerberos5iReadOnly', 'type': 'bool'},
+ 'kerberos5i_read_write': {'key': 'kerberos5iReadWrite', 'type': 'bool'},
+ 'kerberos5p_read_only': {'key': 'kerberos5pReadOnly', 'type': 'bool'},
+ 'kerberos5p_read_write': {'key': 'kerberos5pReadWrite', 'type': 'bool'},
'cifs': {'key': 'cifs', 'type': 'bool'},
'nfsv3': {'key': 'nfsv3', 'type': 'bool'},
'nfsv41': {'key': 'nfsv41', 'type': 'bool'},
'allowed_clients': {'key': 'allowedClients', 'type': 'str'},
+ 'has_root_access': {'key': 'hasRootAccess', 'type': 'bool'},
}
- def __init__(self, *, rule_index: int=None, unix_read_only: bool=None, unix_read_write: bool=None, cifs: bool=None, nfsv3: bool=None, nfsv41: bool=None, allowed_clients: str=None, **kwargs) -> None:
+ def __init__(self, *, rule_index: int=None, unix_read_only: bool=None, unix_read_write: bool=None, kerberos5_read_only: bool=False, kerberos5_read_write: bool=False, kerberos5i_read_only: bool=False, kerberos5i_read_write: bool=False, kerberos5p_read_only: bool=False, kerberos5p_read_write: bool=False, cifs: bool=None, nfsv3: bool=None, nfsv41: bool=None, allowed_clients: str=None, has_root_access: bool=True, **kwargs) -> None:
super(ExportPolicyRule, self).__init__(**kwargs)
self.rule_index = rule_index
self.unix_read_only = unix_read_only
self.unix_read_write = unix_read_write
+ self.kerberos5_read_only = kerberos5_read_only
+ self.kerberos5_read_write = kerberos5_read_write
+ self.kerberos5i_read_only = kerberos5i_read_only
+ self.kerberos5i_read_write = kerberos5i_read_write
+ self.kerberos5p_read_only = kerberos5p_read_only
+ self.kerberos5p_read_write = kerberos5p_read_write
self.cifs = cifs
self.nfsv3 = nfsv3
self.nfsv41 = nfsv41
self.allowed_clients = allowed_clients
+ self.has_root_access = has_root_access
+
+
+class HourlySchedule(Model):
+ """Hourly Schedule properties.
+
+ :param snapshots_to_keep: Hourly snapshot count to keep
+ :type snapshots_to_keep: int
+ :param minute: Indicates which minute snapshot should be taken
+ :type minute: int
+ :param used_bytes: Resource size in bytes, current storage usage for the
+ volume in bytes
+ :type used_bytes: long
+ """
+
+ _attribute_map = {
+ 'snapshots_to_keep': {'key': 'snapshotsToKeep', 'type': 'int'},
+ 'minute': {'key': 'minute', 'type': 'int'},
+ 'used_bytes': {'key': 'usedBytes', 'type': 'long'},
+ }
+
+ def __init__(self, *, snapshots_to_keep: int=None, minute: int=None, used_bytes: int=None, **kwargs) -> None:
+ super(HourlySchedule, self).__init__(**kwargs)
+ self.snapshots_to_keep = snapshots_to_keep
+ self.minute = minute
+ self.used_bytes = used_bytes
class MetricSpecification(Model):
@@ -330,6 +865,41 @@ def __init__(self, *, name: str=None, display_name: str=None, display_descriptio
self.resource_id_dimension_name_override = resource_id_dimension_name_override
+class MonthlySchedule(Model):
+ """Monthly Schedule properties.
+
+ :param snapshots_to_keep: Monthly snapshot count to keep
+ :type snapshots_to_keep: int
+ :param days_of_month: Indicates which days of the month snapshot should be
+ taken. A comma delimited string.
+ :type days_of_month: str
+ :param hour: Indicates which hour in UTC timezone a snapshot should be
+ taken
+ :type hour: int
+ :param minute: Indicates which minute snapshot should be taken
+ :type minute: int
+ :param used_bytes: Resource size in bytes, current storage usage for the
+ volume in bytes
+ :type used_bytes: long
+ """
+
+ _attribute_map = {
+ 'snapshots_to_keep': {'key': 'snapshotsToKeep', 'type': 'int'},
+ 'days_of_month': {'key': 'daysOfMonth', 'type': 'str'},
+ 'hour': {'key': 'hour', 'type': 'int'},
+ 'minute': {'key': 'minute', 'type': 'int'},
+ 'used_bytes': {'key': 'usedBytes', 'type': 'long'},
+ }
+
+ def __init__(self, *, snapshots_to_keep: int=None, days_of_month: str=None, hour: int=None, minute: int=None, used_bytes: int=None, **kwargs) -> None:
+ super(MonthlySchedule, self).__init__(**kwargs)
+ self.snapshots_to_keep = snapshots_to_keep
+ self.days_of_month = days_of_month
+ self.hour = hour
+ self.minute = minute
+ self.used_bytes = used_bytes
+
+
class MountTarget(Model):
"""Mount Target.
@@ -356,20 +926,6 @@ class MountTarget(Model):
:type file_system_id: str
:ivar ip_address: ipAddress. The mount target's IPv4 address
:vartype ip_address: str
- :param subnet: subnet. The subnet
- :type subnet: str
- :param start_ip: startIp. The start of IPv4 address range to use when
- creating a new mount target
- :type start_ip: str
- :param end_ip: endIp. The end of IPv4 address range to use when creating a
- new mount target
- :type end_ip: str
- :param gateway: gateway. The gateway of the IPv4 address range to use when
- creating a new mount target
- :type gateway: str
- :param netmask: netmask. The netmask of the IPv4 address range to use when
- creating a new mount target
- :type netmask: str
:param smb_server_fqdn: smbServerFQDN. The SMB server's Fully Qualified
Domain Name, FQDN
:type smb_server_fqdn: str
@@ -394,15 +950,10 @@ class MountTarget(Model):
'mount_target_id': {'key': 'properties.mountTargetId', 'type': 'str'},
'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'},
'ip_address': {'key': 'properties.ipAddress', 'type': 'str'},
- 'subnet': {'key': 'properties.subnet', 'type': 'str'},
- 'start_ip': {'key': 'properties.startIp', 'type': 'str'},
- 'end_ip': {'key': 'properties.endIp', 'type': 'str'},
- 'gateway': {'key': 'properties.gateway', 'type': 'str'},
- 'netmask': {'key': 'properties.netmask', 'type': 'str'},
'smb_server_fqdn': {'key': 'properties.smbServerFqdn', 'type': 'str'},
}
- def __init__(self, *, location: str, file_system_id: str, tags=None, subnet: str=None, start_ip: str=None, end_ip: str=None, gateway: str=None, netmask: str=None, smb_server_fqdn: str=None, **kwargs) -> None:
+ def __init__(self, *, location: str, file_system_id: str, tags=None, smb_server_fqdn: str=None, **kwargs) -> None:
super(MountTarget, self).__init__(**kwargs)
self.location = location
self.id = None
@@ -412,11 +963,6 @@ def __init__(self, *, location: str, file_system_id: str, tags=None, subnet: str
self.mount_target_id = None
self.file_system_id = file_system_id
self.ip_address = None
- self.subnet = subnet
- self.start_ip = start_ip
- self.end_ip = end_ip
- self.gateway = gateway
- self.netmask = netmask
self.smb_server_fqdn = smb_server_fqdn
@@ -436,20 +982,6 @@ class MountTargetProperties(Model):
:type file_system_id: str
:ivar ip_address: ipAddress. The mount target's IPv4 address
:vartype ip_address: str
- :param subnet: subnet. The subnet
- :type subnet: str
- :param start_ip: startIp. The start of IPv4 address range to use when
- creating a new mount target
- :type start_ip: str
- :param end_ip: endIp. The end of IPv4 address range to use when creating a
- new mount target
- :type end_ip: str
- :param gateway: gateway. The gateway of the IPv4 address range to use when
- creating a new mount target
- :type gateway: str
- :param netmask: netmask. The netmask of the IPv4 address range to use when
- creating a new mount target
- :type netmask: str
:param smb_server_fqdn: smbServerFQDN. The SMB server's Fully Qualified
Domain Name, FQDN
:type smb_server_fqdn: str
@@ -465,24 +997,14 @@ class MountTargetProperties(Model):
'mount_target_id': {'key': 'mountTargetId', 'type': 'str'},
'file_system_id': {'key': 'fileSystemId', 'type': 'str'},
'ip_address': {'key': 'ipAddress', 'type': 'str'},
- 'subnet': {'key': 'subnet', 'type': 'str'},
- 'start_ip': {'key': 'startIp', 'type': 'str'},
- 'end_ip': {'key': 'endIp', 'type': 'str'},
- 'gateway': {'key': 'gateway', 'type': 'str'},
- 'netmask': {'key': 'netmask', 'type': 'str'},
'smb_server_fqdn': {'key': 'smbServerFqdn', 'type': 'str'},
}
- def __init__(self, *, file_system_id: str, subnet: str=None, start_ip: str=None, end_ip: str=None, gateway: str=None, netmask: str=None, smb_server_fqdn: str=None, **kwargs) -> None:
+ def __init__(self, *, file_system_id: str, smb_server_fqdn: str=None, **kwargs) -> None:
super(MountTargetProperties, self).__init__(**kwargs)
self.mount_target_id = None
self.file_system_id = file_system_id
self.ip_address = None
- self.subnet = subnet
- self.start_ip = start_ip
- self.end_ip = end_ip
- self.gateway = gateway
- self.netmask = netmask
self.smb_server_fqdn = smb_server_fqdn
@@ -633,18 +1155,77 @@ class OperationDisplay(Model):
"""
_attribute_map = {
- 'provider': {'key': 'provider', 'type': 'str'},
- 'resource': {'key': 'resource', 'type': 'str'},
- 'operation': {'key': 'operation', 'type': 'str'},
- 'description': {'key': 'description', 'type': 'str'},
+ 'provider': {'key': 'provider', 'type': 'str'},
+ 'resource': {'key': 'resource', 'type': 'str'},
+ 'operation': {'key': 'operation', 'type': 'str'},
+ 'description': {'key': 'description', 'type': 'str'},
+ }
+
+ def __init__(self, *, provider: str=None, resource: str=None, operation: str=None, description: str=None, **kwargs) -> None:
+ super(OperationDisplay, self).__init__(**kwargs)
+ self.provider = provider
+ self.resource = resource
+ self.operation = operation
+ self.description = description
+
+
+class PoolChangeRequest(Model):
+ """Pool change request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param new_pool_resource_id: Required. Resource id of the pool to move
+ volume to
+ :type new_pool_resource_id: str
+ """
+
+ _validation = {
+ 'new_pool_resource_id': {'required': True},
+ }
+
+ _attribute_map = {
+ 'new_pool_resource_id': {'key': 'newPoolResourceId', 'type': 'str'},
+ }
+
+ def __init__(self, *, new_pool_resource_id: str, **kwargs) -> None:
+ super(PoolChangeRequest, self).__init__(**kwargs)
+ self.new_pool_resource_id = new_pool_resource_id
+
+
+class QuotaAvailabilityRequest(Model):
+ """Quota availability request content.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param name: Required. Name of the resource to verify.
+ :type name: str
+ :param type: Required. Resource type used for verification. Possible
+ values include: 'Microsoft.NetApp/netAppAccounts',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots'
+ :type type: str or ~azure.mgmt.netapp.models.CheckQuotaNameResourceTypes
+ :param resource_group: Required. Resource group name.
+ :type resource_group: str
+ """
+
+ _validation = {
+ 'name': {'required': True},
+ 'type': {'required': True},
+ 'resource_group': {'required': True},
+ }
+
+ _attribute_map = {
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'resource_group': {'key': 'resourceGroup', 'type': 'str'},
}
- def __init__(self, *, provider: str=None, resource: str=None, operation: str=None, description: str=None, **kwargs) -> None:
- super(OperationDisplay, self).__init__(**kwargs)
- self.provider = provider
- self.resource = resource
- self.operation = operation
- self.description = description
+ def __init__(self, *, name: str, type, resource_group: str, **kwargs) -> None:
+ super(QuotaAvailabilityRequest, self).__init__(**kwargs)
+ self.name = name
+ self.type = type
+ self.resource_group = resource_group
class ReplicationObject(Model):
@@ -728,39 +1309,6 @@ def __init__(self, *, healthy: bool=None, relationship_status=None, mirror_state
self.error_message = error_message
-class ResourceNameAvailability(Model):
- """Information regarding availability of a resource name.
-
- :param is_available: true indicates name is valid and
- available. false indicates the name is invalid, unavailable,
- or both.
- :type is_available: bool
- :param reason: Invalid indicates the name provided does not
- match Azure App Service naming requirements. AlreadyExists
- indicates that the name is already in use and is therefore unavailable.
- Possible values include: 'Invalid', 'AlreadyExists'
- :type reason: str or ~azure.mgmt.netapp.models.InAvailabilityReasonType
- :param 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. If reason == AlreadyExists, explain
- that resource name is already in use, and direct them to select a
- different name.
- :type message: str
- """
-
- _attribute_map = {
- 'is_available': {'key': 'isAvailable', 'type': 'bool'},
- 'reason': {'key': 'reason', 'type': 'str'},
- 'message': {'key': 'message', 'type': 'str'},
- }
-
- def __init__(self, *, is_available: bool=None, reason=None, message: str=None, **kwargs) -> None:
- super(ResourceNameAvailability, self).__init__(**kwargs)
- self.is_available = is_available
- self.reason = reason
- self.message = message
-
-
class ResourceNameAvailabilityRequest(Model):
"""Resource name availability request content.
@@ -869,6 +1417,252 @@ def __init__(self, *, location: str, **kwargs) -> None:
self.provisioning_state = None
+class SnapshotPolicy(Model):
+ """Snapshot policy information.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param location: Required. Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :param hourly_schedule: hourlySchedule. Schedule for hourly snapshots
+ :type hourly_schedule: object
+ :param daily_schedule: dailySchedule. Schedule for daily snapshots
+ :type daily_schedule: object
+ :param weekly_schedule: weeklySchedule. Schedule for weekly snapshots
+ :type weekly_schedule: object
+ :param monthly_schedule: monthlySchedule. Schedule for monthly snapshots
+ :type monthly_schedule: object
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ """
+
+ _validation = {
+ 'location': {'required': True},
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'hourly_schedule': {'key': 'properties.hourlySchedule', 'type': 'object'},
+ 'daily_schedule': {'key': 'properties.dailySchedule', 'type': 'object'},
+ 'weekly_schedule': {'key': 'properties.weeklySchedule', 'type': 'object'},
+ 'monthly_schedule': {'key': 'properties.monthlySchedule', 'type': 'object'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ }
+
+ def __init__(self, *, location: str, tags=None, hourly_schedule=None, daily_schedule=None, weekly_schedule=None, monthly_schedule=None, enabled: bool=None, **kwargs) -> None:
+ super(SnapshotPolicy, self).__init__(**kwargs)
+ self.location = location
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = tags
+ self.hourly_schedule = hourly_schedule
+ self.daily_schedule = daily_schedule
+ self.weekly_schedule = weekly_schedule
+ self.monthly_schedule = monthly_schedule
+ self.enabled = enabled
+
+
+class SnapshotPolicyDetails(Model):
+ """Snapshot policy properties.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param location: Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :param hourly_schedule: hourlySchedule. Schedule for hourly snapshots
+ :type hourly_schedule: object
+ :param daily_schedule: dailySchedule. Schedule for daily snapshots
+ :type daily_schedule: object
+ :param weekly_schedule: weeklySchedule. Schedule for weekly snapshots
+ :type weekly_schedule: object
+ :param monthly_schedule: monthlySchedule. Schedule for monthly snapshots
+ :type monthly_schedule: object
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ """
+
+ _validation = {
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'hourly_schedule': {'key': 'properties.hourlySchedule', 'type': 'object'},
+ 'daily_schedule': {'key': 'properties.dailySchedule', 'type': 'object'},
+ 'weekly_schedule': {'key': 'properties.weeklySchedule', 'type': 'object'},
+ 'monthly_schedule': {'key': 'properties.monthlySchedule', 'type': 'object'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ }
+
+ def __init__(self, *, location: str=None, tags=None, hourly_schedule=None, daily_schedule=None, weekly_schedule=None, monthly_schedule=None, enabled: bool=None, **kwargs) -> None:
+ super(SnapshotPolicyDetails, self).__init__(**kwargs)
+ self.location = location
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = tags
+ self.hourly_schedule = hourly_schedule
+ self.daily_schedule = daily_schedule
+ self.weekly_schedule = weekly_schedule
+ self.monthly_schedule = monthly_schedule
+ self.enabled = enabled
+
+
+class SnapshotPolicyPatch(Model):
+ """Snapshot policy Details for create and update.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ :param location: Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :param hourly_schedule: hourlySchedule. Schedule for hourly snapshots
+ :type hourly_schedule: object
+ :param daily_schedule: dailySchedule. Schedule for daily snapshots
+ :type daily_schedule: object
+ :param weekly_schedule: weeklySchedule. Schedule for weekly snapshots
+ :type weekly_schedule: object
+ :param monthly_schedule: monthlySchedule. Schedule for monthly snapshots
+ :type monthly_schedule: object
+ :param enabled: The property to decide policy is enabled or not
+ :type enabled: bool
+ """
+
+ _validation = {
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'tags': {'key': 'tags', 'type': '{str}'},
+ 'hourly_schedule': {'key': 'properties.hourlySchedule', 'type': 'object'},
+ 'daily_schedule': {'key': 'properties.dailySchedule', 'type': 'object'},
+ 'weekly_schedule': {'key': 'properties.weeklySchedule', 'type': 'object'},
+ 'monthly_schedule': {'key': 'properties.monthlySchedule', 'type': 'object'},
+ 'enabled': {'key': 'properties.enabled', 'type': 'bool'},
+ }
+
+ def __init__(self, *, location: str=None, tags=None, hourly_schedule=None, daily_schedule=None, weekly_schedule=None, monthly_schedule=None, enabled: bool=None, **kwargs) -> None:
+ super(SnapshotPolicyPatch, self).__init__(**kwargs)
+ self.location = location
+ self.id = None
+ self.name = None
+ self.type = None
+ self.tags = tags
+ self.hourly_schedule = hourly_schedule
+ self.daily_schedule = daily_schedule
+ self.weekly_schedule = weekly_schedule
+ self.monthly_schedule = monthly_schedule
+ self.enabled = enabled
+
+
+class SnapshotPolicyVolumeList(Model):
+ """Volumes associated with snapshot policy.
+
+ :param value: List of volumes
+ :type value: list[object]
+ """
+
+ _attribute_map = {
+ 'value': {'key': 'value', 'type': '[object]'},
+ }
+
+ def __init__(self, *, value=None, **kwargs) -> None:
+ super(SnapshotPolicyVolumeList, self).__init__(**kwargs)
+ self.value = value
+
+
+class Vault(Model):
+ """Vault information.
+
+ Variables are only populated by the server, and will be ignored when
+ sending a request.
+
+ All required parameters must be populated in order to send to Azure.
+
+ :param location: Required. Resource location
+ :type location: str
+ :ivar id: Resource Id
+ :vartype id: str
+ :ivar name: Resource name
+ :vartype name: str
+ :ivar type: Resource type
+ :vartype type: str
+ :param vault_name: Vault Name
+ :type vault_name: str
+ """
+
+ _validation = {
+ 'location': {'required': True},
+ 'id': {'readonly': True},
+ 'name': {'readonly': True},
+ 'type': {'readonly': True},
+ }
+
+ _attribute_map = {
+ 'location': {'key': 'location', 'type': 'str'},
+ 'id': {'key': 'id', 'type': 'str'},
+ 'name': {'key': 'name', 'type': 'str'},
+ 'type': {'key': 'type', 'type': 'str'},
+ 'vault_name': {'key': 'properties.vaultName', 'type': 'str'},
+ }
+
+ def __init__(self, *, location: str, vault_name: str=None, **kwargs) -> None:
+ super(Vault, self).__init__(**kwargs)
+ self.location = location
+ self.id = None
+ self.name = None
+ self.type = None
+ self.vault_name = vault_name
+
+
class Volume(Model):
"""Volume resource.
@@ -911,6 +1705,9 @@ class Volume(Model):
:param snapshot_id: Snapshot ID. UUID v4 or resource identifier used to
identify the Snapshot.
:type snapshot_id: str
+ :param backup_id: Backup ID. UUID v4 or resource identifier used to
+ identify the Backup.
+ :type backup_id: str
:ivar baremetal_tenant_id: Baremetal Tenant ID. Unique Baremetal Tenant
Identifier.
:vartype baremetal_tenant_id: str
@@ -931,6 +1728,15 @@ class Volume(Model):
contain a read-only .snapshot directory which provides access to each of
the volume's snapshots (default to true).
:type snapshot_directory_visible: bool
+ :param kerberos_enabled: Describe if a volume is KerberosEnabled. To be
+ use with swagger version 2020-05-01 or later. Default value: False .
+ :type kerberos_enabled: bool
+ :param security_style: The security style of volume. Possible values
+ include: 'ntfs', 'unix'
+ :type security_style: str or ~azure.mgmt.netapp.models.SecurityStyle
+ :param throughput_mibps: Maximum throughput in Mibps that can be achieved
+ by this volume.
+ :type throughput_mibps: float
"""
_validation = {
@@ -943,8 +1749,10 @@ class Volume(Model):
'usage_threshold': {'required': True, 'maximum': 109951162777600, 'minimum': 107374182400},
'provisioning_state': {'readonly': True},
'snapshot_id': {'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}|(\\?([^\/]*[\/])*)([^\/]+)$'},
+ 'backup_id': {'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}|(\\?([^\/]*[\/])*)([^\/]+)$'},
'baremetal_tenant_id': {'readonly': True, 'max_length': 36, 'min_length': 36, 'pattern': r'^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$'},
'subnet_id': {'required': True},
+ 'throughput_mibps': {'maximum': 4500, 'minimum': 1, 'multiple': 0.001},
}
_attribute_map = {
@@ -961,6 +1769,7 @@ class Volume(Model):
'protocol_types': {'key': 'properties.protocolTypes', 'type': '[str]'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'},
+ 'backup_id': {'key': 'properties.backupId', 'type': 'str'},
'baremetal_tenant_id': {'key': 'properties.baremetalTenantId', 'type': 'str'},
'subnet_id': {'key': 'properties.subnetId', 'type': 'str'},
'mount_targets': {'key': 'properties.mountTargets', 'type': '[MountTargetProperties]'},
@@ -968,9 +1777,12 @@ class Volume(Model):
'data_protection': {'key': 'properties.dataProtection', 'type': 'VolumePropertiesDataProtection'},
'is_restoring': {'key': 'properties.isRestoring', 'type': 'bool'},
'snapshot_directory_visible': {'key': 'properties.snapshotDirectoryVisible', 'type': 'bool'},
+ 'kerberos_enabled': {'key': 'properties.kerberosEnabled', 'type': 'bool'},
+ 'security_style': {'key': 'properties.securityStyle', 'type': 'str'},
+ 'throughput_mibps': {'key': 'properties.throughputMibps', 'type': 'float'},
}
- def __init__(self, *, location: str, creation_token: str, subnet_id: str, tags=None, service_level="Premium", usage_threshold: int=107374182400, export_policy=None, protocol_types=None, snapshot_id: str=None, mount_targets=None, volume_type: str=None, data_protection=None, is_restoring: bool=None, snapshot_directory_visible: bool=None, **kwargs) -> None:
+ def __init__(self, *, location: str, creation_token: str, subnet_id: str, tags=None, service_level="Premium", usage_threshold: int=107374182400, export_policy=None, protocol_types=None, snapshot_id: str=None, backup_id: str=None, mount_targets=None, volume_type: str=None, data_protection=None, is_restoring: bool=None, snapshot_directory_visible: bool=None, kerberos_enabled: bool=False, security_style=None, throughput_mibps: float=None, **kwargs) -> None:
super(Volume, self).__init__(**kwargs)
self.location = location
self.id = None
@@ -985,6 +1797,7 @@ def __init__(self, *, location: str, creation_token: str, subnet_id: str, tags=N
self.protocol_types = protocol_types
self.provisioning_state = None
self.snapshot_id = snapshot_id
+ self.backup_id = backup_id
self.baremetal_tenant_id = None
self.subnet_id = subnet_id
self.mount_targets = mount_targets
@@ -992,6 +1805,61 @@ def __init__(self, *, location: str, creation_token: str, subnet_id: str, tags=N
self.data_protection = data_protection
self.is_restoring = is_restoring
self.snapshot_directory_visible = snapshot_directory_visible
+ self.kerberos_enabled = kerberos_enabled
+ self.security_style = security_style
+ self.throughput_mibps = throughput_mibps
+
+
+class VolumeBackupProperties(Model):
+ """Volume Backup Properties.
+
+ :param backup_policy_id: Backup Policy Resource ID
+ :type backup_policy_id: str
+ :param policy_enforced: Policy Enforced
+ :type policy_enforced: bool
+ :param vault_id: Vault Resource ID
+ :type vault_id: str
+ :param backup_enabled: Backup Enabled
+ :type backup_enabled: bool
+ """
+
+ _attribute_map = {
+ 'backup_policy_id': {'key': 'backupPolicyId', 'type': 'str'},
+ 'policy_enforced': {'key': 'policyEnforced', 'type': 'bool'},
+ 'vault_id': {'key': 'vaultId', 'type': 'str'},
+ 'backup_enabled': {'key': 'backupEnabled', 'type': 'bool'},
+ }
+
+ def __init__(self, *, backup_policy_id: str=None, policy_enforced: bool=None, vault_id: str=None, backup_enabled: bool=None, **kwargs) -> None:
+ super(VolumeBackupProperties, self).__init__(**kwargs)
+ self.backup_policy_id = backup_policy_id
+ self.policy_enforced = policy_enforced
+ self.vault_id = vault_id
+ self.backup_enabled = backup_enabled
+
+
+class VolumeBackups(Model):
+ """Volume details using the backup policy.
+
+ :param volume_name: Volume name
+ :type volume_name: str
+ :param backups_count: Total count of backups for volume
+ :type backups_count: int
+ :param policy_enabled: Policy enabled
+ :type policy_enabled: bool
+ """
+
+ _attribute_map = {
+ 'volume_name': {'key': 'volumeName', 'type': 'str'},
+ 'backups_count': {'key': 'backupsCount', 'type': 'int'},
+ 'policy_enabled': {'key': 'policyEnabled', 'type': 'bool'},
+ }
+
+ def __init__(self, *, volume_name: str=None, backups_count: int=None, policy_enabled: bool=None, **kwargs) -> None:
+ super(VolumeBackups, self).__init__(**kwargs)
+ self.volume_name = volume_name
+ self.backups_count = backups_count
+ self.policy_enabled = policy_enabled
class VolumePatch(Model):
@@ -1022,6 +1890,13 @@ class VolumePatch(Model):
:param export_policy: exportPolicy. Set of export policy rules
:type export_policy:
~azure.mgmt.netapp.models.VolumePatchPropertiesExportPolicy
+ :param throughput_mibps: Maximum throughput in Mibps that can be achieved
+ by this volume.
+ :type throughput_mibps: float
+ :param data_protection: DataProtection. DataProtection type volumes
+ include an object containing details of the replication
+ :type data_protection:
+ ~azure.mgmt.netapp.models.VolumePatchPropertiesDataProtection
"""
_validation = {
@@ -1029,6 +1904,7 @@ class VolumePatch(Model):
'name': {'readonly': True},
'type': {'readonly': True},
'usage_threshold': {'maximum': 109951162777600, 'minimum': 107374182400},
+ 'throughput_mibps': {'maximum': 4500, 'minimum': 1, 'multiple': 0.001},
}
_attribute_map = {
@@ -1040,9 +1916,11 @@ class VolumePatch(Model):
'service_level': {'key': 'properties.serviceLevel', 'type': 'str'},
'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'},
'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePatchPropertiesExportPolicy'},
+ 'throughput_mibps': {'key': 'properties.throughputMibps', 'type': 'float'},
+ 'data_protection': {'key': 'properties.dataProtection', 'type': 'VolumePatchPropertiesDataProtection'},
}
- def __init__(self, *, location: str=None, tags=None, service_level="Premium", usage_threshold: int=107374182400, export_policy=None, **kwargs) -> None:
+ def __init__(self, *, location: str=None, tags=None, service_level="Premium", usage_threshold: int=107374182400, export_policy=None, throughput_mibps: float=None, data_protection=None, **kwargs) -> None:
super(VolumePatch, self).__init__(**kwargs)
self.location = location
self.id = None
@@ -1052,6 +1930,27 @@ def __init__(self, *, location: str=None, tags=None, service_level="Premium", us
self.service_level = service_level
self.usage_threshold = usage_threshold
self.export_policy = export_policy
+ self.throughput_mibps = throughput_mibps
+ self.data_protection = data_protection
+
+
+class VolumePatchPropertiesDataProtection(Model):
+ """DataProtection.
+
+ DataProtection type volumes include an object containing details of the
+ replication.
+
+ :param backup: Backup. Backup Properties
+ :type backup: ~azure.mgmt.netapp.models.VolumeBackupProperties
+ """
+
+ _attribute_map = {
+ 'backup': {'key': 'backup', 'type': 'VolumeBackupProperties'},
+ }
+
+ def __init__(self, *, backup=None, **kwargs) -> None:
+ super(VolumePatchPropertiesDataProtection, self).__init__(**kwargs)
+ self.backup = backup
class VolumePatchPropertiesExportPolicy(Model):
@@ -1078,6 +1977,8 @@ class VolumePropertiesDataProtection(Model):
DataProtection type volumes include an object containing details of the
replication.
+ :param backup: Backup. Backup Properties
+ :type backup: ~azure.mgmt.netapp.models.VolumeBackupProperties
:param replication: Replication. Replication properties
:type replication: ~azure.mgmt.netapp.models.ReplicationObject
:param snapshot: Snapshot. Snapshot properties.
@@ -1085,12 +1986,14 @@ class VolumePropertiesDataProtection(Model):
"""
_attribute_map = {
+ 'backup': {'key': 'backup', 'type': 'VolumeBackupProperties'},
'replication': {'key': 'replication', 'type': 'ReplicationObject'},
'snapshot': {'key': 'snapshot', 'type': 'VolumeSnapshotProperties'},
}
- def __init__(self, *, replication=None, snapshot=None, **kwargs) -> None:
+ def __init__(self, *, backup=None, replication=None, snapshot=None, **kwargs) -> None:
super(VolumePropertiesDataProtection, self).__init__(**kwargs)
+ self.backup = backup
self.replication = replication
self.snapshot = snapshot
@@ -1143,3 +2046,39 @@ class VolumeSnapshotProperties(Model):
def __init__(self, *, snapshot_policy_id: str=None, **kwargs) -> None:
super(VolumeSnapshotProperties, self).__init__(**kwargs)
self.snapshot_policy_id = snapshot_policy_id
+
+
+class WeeklySchedule(Model):
+ """Weekly Schedule properties, make a snapshot every week at a specific day or
+ days.
+
+ :param snapshots_to_keep: Weekly snapshot count to keep
+ :type snapshots_to_keep: int
+ :param day: Indicates which weekdays snapshot should be taken, accepts a
+ comma separated list of week day names in english
+ :type day: str
+ :param hour: Indicates which hour in UTC timezone a snapshot should be
+ taken
+ :type hour: int
+ :param minute: Indicates which minute snapshot should be taken
+ :type minute: int
+ :param used_bytes: Resource size in bytes, current storage usage for the
+ volume in bytes
+ :type used_bytes: long
+ """
+
+ _attribute_map = {
+ 'snapshots_to_keep': {'key': 'snapshotsToKeep', 'type': 'int'},
+ 'day': {'key': 'day', 'type': 'str'},
+ 'hour': {'key': 'hour', 'type': 'int'},
+ 'minute': {'key': 'minute', 'type': 'int'},
+ 'used_bytes': {'key': 'usedBytes', 'type': 'long'},
+ }
+
+ def __init__(self, *, snapshots_to_keep: int=None, day: str=None, hour: int=None, minute: int=None, used_bytes: int=None, **kwargs) -> None:
+ super(WeeklySchedule, self).__init__(**kwargs)
+ self.snapshots_to_keep = snapshots_to_keep
+ self.day = day
+ self.hour = hour
+ self.minute = minute
+ self.used_bytes = used_bytes
diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_paged_models.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_paged_models.py
index f56ae0307cf9..d9a696871b8f 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_paged_models.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_paged_models.py
@@ -77,3 +77,55 @@ class SnapshotPaged(Paged):
def __init__(self, *args, **kwargs):
super(SnapshotPaged, self).__init__(*args, **kwargs)
+class SnapshotPolicyPaged(Paged):
+ """
+ A paging container for iterating over a list of :class:`SnapshotPolicy ` object
+ """
+
+ _attribute_map = {
+ 'next_link': {'key': 'nextLink', 'type': 'str'},
+ 'current_page': {'key': 'value', 'type': '[SnapshotPolicy]'}
+ }
+
+ def __init__(self, *args, **kwargs):
+
+ super(SnapshotPolicyPaged, self).__init__(*args, **kwargs)
+class BackupPaged(Paged):
+ """
+ A paging container for iterating over a list of :class:`Backup ` object
+ """
+
+ _attribute_map = {
+ 'next_link': {'key': 'nextLink', 'type': 'str'},
+ 'current_page': {'key': 'value', 'type': '[Backup]'}
+ }
+
+ def __init__(self, *args, **kwargs):
+
+ super(BackupPaged, self).__init__(*args, **kwargs)
+class BackupPolicyPaged(Paged):
+ """
+ A paging container for iterating over a list of :class:`BackupPolicy ` object
+ """
+
+ _attribute_map = {
+ 'next_link': {'key': 'nextLink', 'type': 'str'},
+ 'current_page': {'key': 'value', 'type': '[BackupPolicy]'}
+ }
+
+ def __init__(self, *args, **kwargs):
+
+ super(BackupPolicyPaged, self).__init__(*args, **kwargs)
+class VaultPaged(Paged):
+ """
+ A paging container for iterating over a list of :class:`Vault ` object
+ """
+
+ _attribute_map = {
+ 'next_link': {'key': 'nextLink', 'type': 'str'},
+ 'current_page': {'key': 'value', 'type': '[Vault]'}
+ }
+
+ def __init__(self, *args, **kwargs):
+
+ super(VaultPaged, self).__init__(*args, **kwargs)
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 4658666d5793..3a28d1ebfc0c 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
@@ -15,6 +15,11 @@
from ._pools_operations import PoolsOperations
from ._volumes_operations import VolumesOperations
from ._snapshots_operations import SnapshotsOperations
+from ._snapshot_policies_operations import SnapshotPoliciesOperations
+from ._account_backups_operations import AccountBackupsOperations
+from ._backups_operations import BackupsOperations
+from ._backup_policies_operations import BackupPoliciesOperations
+from ._vaults_operations import VaultsOperations
__all__ = [
'Operations',
@@ -23,4 +28,9 @@
'PoolsOperations',
'VolumesOperations',
'SnapshotsOperations',
+ 'SnapshotPoliciesOperations',
+ 'AccountBackupsOperations',
+ 'BackupsOperations',
+ 'BackupPoliciesOperations',
+ 'VaultsOperations',
]
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
new file mode 100644
index 000000000000..b0e2ce2bcaf3
--- /dev/null
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_account_backups_operations.py
@@ -0,0 +1,256 @@
+# coding=utf-8
+# --------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for
+# license information.
+#
+# Code generated by Microsoft (R) AutoRest Code Generator.
+# Changes may cause incorrect behavior and will be lost if the code is
+# regenerated.
+# --------------------------------------------------------------------------
+
+import uuid
+from msrest.pipeline import ClientRawResponse
+from msrestazure.azure_exceptions import CloudError
+from msrest.polling import LROPoller, NoPolling
+from msrestazure.polling.arm_polling import ARMPolling
+
+from .. import models
+
+
+class AccountBackupsOperations(object):
+ """AccountBackupsOperations operations.
+
+ You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute.
+
+ :param client: Client for service requests.
+ :param config: Configuration of service client.
+ :param serializer: An object model serializer.
+ :param deserializer: An object model deserializer.
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
+ """
+
+ models = models
+
+ def __init__(self, client, config, serializer, deserializer):
+
+ self._client = client
+ self._serialize = serializer
+ self._deserialize = deserializer
+ self.api_version = "2020-06-01"
+
+ self.config = config
+
+ def list(
+ self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config):
+ """List Backups for a Netapp Account.
+
+ List all Backups for a Netapp Account.
+
+ :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 dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: BackupsList or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.BackupsList or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.list.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('BackupsList', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/accountBackups'}
+
+ def get(
+ self, resource_group_name, account_name, backup_name, custom_headers=None, raw=False, **operation_config):
+ """Get Backup for a Netapp Account.
+
+ Get Backup for a Netapp Account.
+
+ :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 backup_name: The name of the backup
+ :type backup_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: Backup or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.Backup or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.get.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'backupName': self._serialize.url("backup_name", backup_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('Backup', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/accountBackups/{backupName}'}
+
+
+ def _delete_initial(
+ self, resource_group_name, account_name, backup_name, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = self.delete.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'backupName': self._serialize.url("backup_name", backup_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.delete(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 202, 204]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ def delete(
+ self, resource_group_name, account_name, backup_name, custom_headers=None, raw=False, polling=True, **operation_config):
+ """Delete Backup for a Netapp Account.
+
+ Delete Backup for a Netapp Account.
+
+ :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 backup_name: The name of the backup
+ :type backup_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns None or
+ ClientRawResponse if raw==True
+ :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._delete_initial(
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ backup_name=backup_name,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/accountBackups/{backupName}'}
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 c97afa4e3692..f8cd9e02b38e 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
@@ -27,7 +27,7 @@ class AccountsOperations(object):
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
- :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-02-01".
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
"""
models = models
@@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer):
self._client = client
self._serialize = serializer
self._deserialize = deserializer
- self.api_version = "2020-02-01"
+ self.api_version = "2020-06-01"
self.config = config
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
new file mode 100644
index 000000000000..f0fef82214a8
--- /dev/null
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backup_policies_operations.py
@@ -0,0 +1,453 @@
+# coding=utf-8
+# --------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for
+# license information.
+#
+# Code generated by Microsoft (R) AutoRest Code Generator.
+# Changes may cause incorrect behavior and will be lost if the code is
+# regenerated.
+# --------------------------------------------------------------------------
+
+import uuid
+from msrest.pipeline import ClientRawResponse
+from msrestazure.azure_exceptions import CloudError
+from msrest.polling import LROPoller, NoPolling
+from msrestazure.polling.arm_polling import ARMPolling
+
+from .. import models
+
+
+class BackupPoliciesOperations(object):
+ """BackupPoliciesOperations operations.
+
+ You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute.
+
+ :param client: Client for service requests.
+ :param config: Configuration of service client.
+ :param serializer: An object model serializer.
+ :param deserializer: An object model deserializer.
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
+ """
+
+ models = models
+
+ def __init__(self, client, config, serializer, deserializer):
+
+ self._client = client
+ self._serialize = serializer
+ self._deserialize = deserializer
+ self.api_version = "2020-06-01"
+
+ self.config = config
+
+ def list(
+ self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config):
+ """List backup policies.
+
+ List backup policies for Netapp Account.
+
+ :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 dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: An iterator like instance of BackupPolicy
+ :rtype:
+ ~azure.mgmt.netapp.models.BackupPolicyPaged[~azure.mgmt.netapp.models.BackupPolicy]
+ :raises: :class:`CloudError`
+ """
+ def prepare_request(next_link=None):
+ if not next_link:
+ # Construct URL
+ url = self.list.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ else:
+ url = next_link
+ query_parameters = {}
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ return request
+
+ def internal_paging(next_link=None):
+ request = prepare_request(next_link)
+
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ return response
+
+ # Deserialize response
+ header_dict = None
+ if raw:
+ header_dict = {}
+ deserialized = models.BackupPolicyPaged(internal_paging, self._deserialize.dependencies, header_dict)
+
+ return deserialized
+ list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies'}
+
+ def get(
+ self, resource_group_name, account_name, backup_policy_name, custom_headers=None, raw=False, **operation_config):
+ """Get a backup Policy.
+
+ Get a particular backup Policy.
+
+ :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 backup_policy_name: Backup policy Name which uniquely identify
+ backup policy.
+ :type backup_policy_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: BackupPolicy or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.BackupPolicy or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.get.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'backupPolicyName': self._serialize.url("backup_policy_name", backup_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('BackupPolicy', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies/{backupPolicyName}'}
+
+
+ def _create_initial(
+ self, resource_group_name, account_name, backup_policy_name, body, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = self.create.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'backupPolicyName': self._serialize.url("backup_policy_name", backup_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct body
+ body_content = self._serialize.body(body, 'BackupPolicy')
+
+ # Construct and send request
+ request = self._client.put(url, query_parameters, header_parameters, body_content)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 201, 202]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+
+ if response.status_code == 200:
+ deserialized = self._deserialize('BackupPolicy', response)
+ if response.status_code == 201:
+ deserialized = self._deserialize('BackupPolicy', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+
+ def create(
+ self, resource_group_name, account_name, backup_policy_name, body, custom_headers=None, raw=False, polling=True, **operation_config):
+ """Create a backup policy.
+
+ Create a backup policy for Netapp Account.
+
+ :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 backup_policy_name: Backup policy Name which uniquely identify
+ backup policy.
+ :type backup_policy_name: str
+ :param body: Backup policy object supplied in the body of the
+ operation.
+ :type body: ~azure.mgmt.netapp.models.BackupPolicy
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns BackupPolicy or
+ ClientRawResponse if raw==True
+ :rtype:
+ ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.netapp.models.BackupPolicy]
+ or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.netapp.models.BackupPolicy]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._create_initial(
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ backup_policy_name=backup_policy_name,
+ body=body,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ deserialized = self._deserialize('BackupPolicy', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies/{backupPolicyName}'}
+
+ def update(
+ self, resource_group_name, account_name, backup_policy_name, body, custom_headers=None, raw=False, **operation_config):
+ """Patch a backup policy.
+
+ Patch a backup policy for Netapp Account.
+
+ :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 backup_policy_name: Backup policy Name which uniquely identify
+ backup policy.
+ :type backup_policy_name: str
+ :param body: Backup policy object supplied in the body of the
+ operation.
+ :type body: ~azure.mgmt.netapp.models.BackupPolicyPatch
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: BackupPolicy or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.BackupPolicy or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.update.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'backupPolicyName': self._serialize.url("backup_policy_name", backup_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct body
+ body_content = self._serialize.body(body, 'BackupPolicyPatch')
+
+ # Construct and send request
+ request = self._client.patch(url, query_parameters, header_parameters, body_content)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('BackupPolicy', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies/{backupPolicyName}'}
+
+
+ def _delete_initial(
+ self, resource_group_name, account_name, backup_policy_name, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = self.delete.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'backupPolicyName': self._serialize.url("backup_policy_name", backup_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.delete(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 202, 204]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ def delete(
+ self, resource_group_name, account_name, backup_policy_name, custom_headers=None, raw=False, polling=True, **operation_config):
+ """Delete a backup policy.
+
+ Delete backup policy.
+
+ :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 backup_policy_name: Backup policy Name which uniquely identify
+ backup policy.
+ :type backup_policy_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns None or
+ ClientRawResponse if raw==True
+ :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._delete_initial(
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ backup_policy_name=backup_policy_name,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/backupPolicies/{backupPolicyName}'}
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
new file mode 100644
index 000000000000..a2384ad9d3ab
--- /dev/null
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_backups_operations.py
@@ -0,0 +1,495 @@
+# coding=utf-8
+# --------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for
+# license information.
+#
+# Code generated by Microsoft (R) AutoRest Code Generator.
+# Changes may cause incorrect behavior and will be lost if the code is
+# regenerated.
+# --------------------------------------------------------------------------
+
+import uuid
+from msrest.pipeline import ClientRawResponse
+from msrestazure.azure_exceptions import CloudError
+from msrest.polling import LROPoller, NoPolling
+from msrestazure.polling.arm_polling import ARMPolling
+
+from .. import models
+
+
+class BackupsOperations(object):
+ """BackupsOperations operations.
+
+ You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute.
+
+ :param client: Client for service requests.
+ :param config: Configuration of service client.
+ :param serializer: An object model serializer.
+ :param deserializer: An object model deserializer.
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
+ """
+
+ models = models
+
+ def __init__(self, client, config, serializer, deserializer):
+
+ self._client = client
+ self._serialize = serializer
+ self._deserialize = deserializer
+ self.api_version = "2020-06-01"
+
+ self.config = config
+
+ def list(
+ self, resource_group_name, account_name, pool_name, volume_name, custom_headers=None, raw=False, **operation_config):
+ """List Backups.
+
+ List all backups for a volume.
+
+ :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 dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: An iterator like instance of Backup
+ :rtype:
+ ~azure.mgmt.netapp.models.BackupPaged[~azure.mgmt.netapp.models.Backup]
+ :raises: :class:`CloudError`
+ """
+ def prepare_request(next_link=None):
+ if not next_link:
+ # Construct URL
+ url = self.list.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'poolName': self._serialize.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': self._serialize.url("volume_name", volume_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z][a-zA-Z0-9\-_]{0,63}$')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ else:
+ url = next_link
+ query_parameters = {}
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ return request
+
+ def internal_paging(next_link=None):
+ request = prepare_request(next_link)
+
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ return response
+
+ # Deserialize response
+ header_dict = None
+ if raw:
+ header_dict = {}
+ deserialized = models.BackupPaged(internal_paging, self._deserialize.dependencies, header_dict)
+
+ return deserialized
+ list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups'}
+
+ def get(
+ self, resource_group_name, account_name, pool_name, volume_name, backup_name, custom_headers=None, raw=False, **operation_config):
+ """Get a backup.
+
+ Get a particular backup of the volume.
+
+ :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 backup_name: The name of the backup
+ :type backup_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: Backup or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.Backup or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.get.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'poolName': self._serialize.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': self._serialize.url("volume_name", volume_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z][a-zA-Z0-9\-_]{0,63}$'),
+ 'backupName': self._serialize.url("backup_name", backup_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('Backup', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups/{backupName}'}
+
+
+ def _create_initial(
+ self, resource_group_name, account_name, pool_name, volume_name, backup_name, location, label=None, custom_headers=None, raw=False, **operation_config):
+ body = models.Backup(location=location, label=label)
+
+ # Construct URL
+ url = self.create.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'poolName': self._serialize.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': self._serialize.url("volume_name", volume_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z][a-zA-Z0-9\-_]{0,63}$'),
+ 'backupName': self._serialize.url("backup_name", backup_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct body
+ body_content = self._serialize.body(body, 'Backup')
+
+ # Construct and send request
+ request = self._client.put(url, query_parameters, header_parameters, body_content)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 201, 202]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+
+ if response.status_code == 200:
+ deserialized = self._deserialize('Backup', response)
+ if response.status_code == 201:
+ deserialized = self._deserialize('Backup', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+
+ def create(
+ self, resource_group_name, account_name, pool_name, volume_name, backup_name, location, label=None, custom_headers=None, raw=False, polling=True, **operation_config):
+ """Create a backup.
+
+ Create a backup for the volume.
+
+ :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 backup_name: The name of the backup
+ :type backup_name: str
+ :param location: Resource location
+ :type location: str
+ :param label: Label for backup
+ :type label: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns Backup or
+ ClientRawResponse if raw==True
+ :rtype:
+ ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.netapp.models.Backup]
+ or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.netapp.models.Backup]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._create_initial(
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ pool_name=pool_name,
+ volume_name=volume_name,
+ backup_name=backup_name,
+ location=location,
+ label=label,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ deserialized = self._deserialize('Backup', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups/{backupName}'}
+
+ def update(
+ self, resource_group_name, account_name, pool_name, volume_name, backup_name, tags=None, label=None, custom_headers=None, raw=False, **operation_config):
+ """Patch a backup.
+
+ Patch a backup for the volume.
+
+ :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 backup_name: The name of the backup
+ :type backup_name: str
+ :param tags: Resource tags
+ :type tags: dict[str, str]
+ :param label: Label for backup
+ :type label: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: Backup or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.Backup or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ body = None
+ if tags is not None or label is not None:
+ body = models.BackupPatch(tags=tags, label=label)
+
+ # Construct URL
+ url = self.update.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'poolName': self._serialize.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': self._serialize.url("volume_name", volume_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z][a-zA-Z0-9\-_]{0,63}$'),
+ 'backupName': self._serialize.url("backup_name", backup_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct body
+ if body is not None:
+ body_content = self._serialize.body(body, 'BackupPatch')
+ else:
+ body_content = None
+
+ # Construct and send request
+ request = self._client.patch(url, query_parameters, header_parameters, body_content)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('Backup', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups/{backupName}'}
+
+
+ def _delete_initial(
+ self, resource_group_name, account_name, pool_name, volume_name, backup_name, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = self.delete.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'poolName': self._serialize.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': self._serialize.url("volume_name", volume_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z][a-zA-Z0-9\-_]{0,63}$'),
+ 'backupName': self._serialize.url("backup_name", backup_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.delete(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 202, 204]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ def delete(
+ self, resource_group_name, account_name, pool_name, volume_name, backup_name, custom_headers=None, raw=False, polling=True, **operation_config):
+ """Delete backup.
+
+ Delete a backup of the volume.
+
+ :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 backup_name: The name of the backup
+ :type backup_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns None or
+ ClientRawResponse if raw==True
+ :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._delete_initial(
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ pool_name=pool_name,
+ volume_name=volume_name,
+ backup_name=backup_name,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/backups/{backupName}'}
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 585564008a10..2aececcdcdfd 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
@@ -25,7 +25,7 @@ class NetAppResourceOperations(object):
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
- :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-02-01".
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
"""
models = models
@@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer):
self._client = client
self._serialize = serializer
self._deserialize = deserializer
- self.api_version = "2020-02-01"
+ self.api_version = "2020-06-01"
self.config = config
@@ -62,8 +62,8 @@ def check_name_availability(
deserialized response
:param operation_config: :ref:`Operation configuration
overrides`.
- :return: ResourceNameAvailability or ClientRawResponse if raw=true
- :rtype: ~azure.mgmt.netapp.models.ResourceNameAvailability or
+ :return: CheckAvailabilityResponse or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError`
"""
@@ -106,7 +106,7 @@ def check_name_availability(
deserialized = None
if response.status_code == 200:
- deserialized = self._deserialize('ResourceNameAvailability', response)
+ deserialized = self._deserialize('CheckAvailabilityResponse', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
@@ -138,8 +138,8 @@ def check_file_path_availability(
deserialized response
:param operation_config: :ref:`Operation configuration
overrides`.
- :return: ResourceNameAvailability or ClientRawResponse if raw=true
- :rtype: ~azure.mgmt.netapp.models.ResourceNameAvailability or
+ :return: CheckAvailabilityResponse or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse or
~msrest.pipeline.ClientRawResponse
:raises: :class:`CloudError`
"""
@@ -182,7 +182,7 @@ def check_file_path_availability(
deserialized = None
if response.status_code == 200:
- deserialized = self._deserialize('ResourceNameAvailability', response)
+ deserialized = self._deserialize('CheckAvailabilityResponse', response)
if raw:
client_raw_response = ClientRawResponse(deserialized, response)
@@ -190,3 +190,80 @@ def check_file_path_availability(
return deserialized
check_file_path_availability.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.NetApp/locations/{location}/checkFilePathAvailability'}
+
+ def check_quota_availability(
+ self, location, name, type, resource_group, custom_headers=None, raw=False, **operation_config):
+ """Check quota availability.
+
+ Check if a quota is available.
+
+ :param location: The location
+ :type location: str
+ :param name: Name of the resource to verify.
+ :type name: str
+ :param type: Resource type used for verification. Possible values
+ include: 'Microsoft.NetApp/netAppAccounts',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes',
+ 'Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots'
+ :type type: str or
+ ~azure.mgmt.netapp.models.CheckQuotaNameResourceTypes
+ :param resource_group: Resource group name.
+ :type resource_group: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: CheckAvailabilityResponse or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.CheckAvailabilityResponse or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ body = models.QuotaAvailabilityRequest(name=name, type=type, resource_group=resource_group)
+
+ # Construct URL
+ url = self.check_quota_availability.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'location': self._serialize.url("location", location, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct body
+ body_content = self._serialize.body(body, 'QuotaAvailabilityRequest')
+
+ # Construct and send request
+ request = self._client.post(url, query_parameters, header_parameters, body_content)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('CheckAvailabilityResponse', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ check_quota_availability.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.NetApp/locations/{location}/checkQuotaAvailability'}
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 346d5d8f058d..a4381f64f8e2 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
@@ -25,7 +25,7 @@ class Operations(object):
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
- :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-02-01".
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
"""
models = models
@@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer):
self._client = client
self._serialize = serializer
self._deserialize = deserializer
- self.api_version = "2020-02-01"
+ self.api_version = "2020-06-01"
self.config = config
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 f55569ece678..971eaa069837 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
@@ -27,7 +27,7 @@ class PoolsOperations(object):
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
- :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-02-01".
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
"""
models = models
@@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer):
self._client = client
self._serialize = serializer
self._deserialize = deserializer
- self.api_version = "2020-02-01"
+ self.api_version = "2020-06-01"
self.config = config
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
new file mode 100644
index 000000000000..24e5d178509c
--- /dev/null
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshot_policies_operations.py
@@ -0,0 +1,505 @@
+# coding=utf-8
+# --------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for
+# license information.
+#
+# Code generated by Microsoft (R) AutoRest Code Generator.
+# Changes may cause incorrect behavior and will be lost if the code is
+# regenerated.
+# --------------------------------------------------------------------------
+
+import uuid
+from msrest.pipeline import ClientRawResponse
+from msrestazure.azure_exceptions import CloudError
+from msrest.polling import LROPoller, NoPolling
+from msrestazure.polling.arm_polling import ARMPolling
+
+from .. import models
+
+
+class SnapshotPoliciesOperations(object):
+ """SnapshotPoliciesOperations operations.
+
+ You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute.
+
+ :param client: Client for service requests.
+ :param config: Configuration of service client.
+ :param serializer: An object model serializer.
+ :param deserializer: An object model deserializer.
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
+ """
+
+ models = models
+
+ def __init__(self, client, config, serializer, deserializer):
+
+ self._client = client
+ self._serialize = serializer
+ self._deserialize = deserializer
+ self.api_version = "2020-06-01"
+
+ self.config = config
+
+ def list(
+ self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config):
+ """List snapshot policy.
+
+ :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 dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: An iterator like instance of SnapshotPolicy
+ :rtype:
+ ~azure.mgmt.netapp.models.SnapshotPolicyPaged[~azure.mgmt.netapp.models.SnapshotPolicy]
+ :raises: :class:`CloudError`
+ """
+ def prepare_request(next_link=None):
+ if not next_link:
+ # Construct URL
+ url = self.list.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ else:
+ url = next_link
+ query_parameters = {}
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ return request
+
+ def internal_paging(next_link=None):
+ request = prepare_request(next_link)
+
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ return response
+
+ # Deserialize response
+ header_dict = None
+ if raw:
+ header_dict = {}
+ deserialized = models.SnapshotPolicyPaged(internal_paging, self._deserialize.dependencies, header_dict)
+
+ return deserialized
+ list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies'}
+
+ def get(
+ self, resource_group_name, account_name, snapshot_policy_name, custom_headers=None, raw=False, **operation_config):
+ """Get a snapshot Policy.
+
+ :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 snapshot_policy_name: The name of the snapshot policy target
+ :type snapshot_policy_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: SnapshotPolicy or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.SnapshotPolicy or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.get.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'snapshotPolicyName': self._serialize.url("snapshot_policy_name", snapshot_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('SnapshotPolicy', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}'}
+
+
+ def _create_initial(
+ self, body, resource_group_name, account_name, snapshot_policy_name, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = self.create.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'snapshotPolicyName': self._serialize.url("snapshot_policy_name", snapshot_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct body
+ body_content = self._serialize.body(body, 'SnapshotPolicy')
+
+ # Construct and send request
+ request = self._client.put(url, query_parameters, header_parameters, body_content)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 201]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+
+ if response.status_code == 200:
+ deserialized = self._deserialize('SnapshotPolicy', response)
+ if response.status_code == 201:
+ deserialized = self._deserialize('SnapshotPolicy', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+
+ def create(
+ self, body, resource_group_name, account_name, snapshot_policy_name, custom_headers=None, raw=False, polling=True, **operation_config):
+ """Create a snapshot policy.
+
+ :param body: Snapshot policy object supplied in the body of the
+ operation.
+ :type body: ~azure.mgmt.netapp.models.SnapshotPolicy
+ :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 snapshot_policy_name: The name of the snapshot policy target
+ :type snapshot_policy_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns SnapshotPolicy or
+ ClientRawResponse if raw==True
+ :rtype:
+ ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.netapp.models.SnapshotPolicy]
+ or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.netapp.models.SnapshotPolicy]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._create_initial(
+ body=body,
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ snapshot_policy_name=snapshot_policy_name,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ deserialized = self._deserialize('SnapshotPolicy', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ create.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}'}
+
+ def update(
+ self, body, resource_group_name, account_name, snapshot_policy_name, custom_headers=None, raw=False, **operation_config):
+ """Patch a snapshot policy.
+
+ :param body: Snapshot policy object supplied in the body of the
+ operation.
+ :type body: ~azure.mgmt.netapp.models.SnapshotPolicyPatch
+ :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 snapshot_policy_name: The name of the snapshot policy target
+ :type snapshot_policy_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: SnapshotPolicy or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.SnapshotPolicy or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.update.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'snapshotPolicyName': self._serialize.url("snapshot_policy_name", snapshot_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct body
+ body_content = self._serialize.body(body, 'SnapshotPolicyPatch')
+
+ # Construct and send request
+ request = self._client.patch(url, query_parameters, header_parameters, body_content)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('SnapshotPolicy', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}'}
+
+
+ def _delete_initial(
+ self, resource_group_name, account_name, snapshot_policy_name, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = self.delete.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'snapshotPolicyName': self._serialize.url("snapshot_policy_name", snapshot_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.delete(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 202, 204]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ def delete(
+ self, resource_group_name, account_name, snapshot_policy_name, custom_headers=None, raw=False, polling=True, **operation_config):
+ """Delete snapshot policy.
+
+ :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 snapshot_policy_name: The name of the snapshot policy target
+ :type snapshot_policy_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns None or
+ ClientRawResponse if raw==True
+ :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._delete_initial(
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ snapshot_policy_name=snapshot_policy_name,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}'}
+
+ def list_volumes(
+ self, resource_group_name, account_name, snapshot_policy_name, custom_headers=None, raw=False, **operation_config):
+ """Get volumes associated with snapshot policy.
+
+ Get volumes associated with snapshot policy.
+
+ :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 snapshot_policy_name: The name of the snapshot policy target
+ :type snapshot_policy_name: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: SnapshotPolicyVolumeList or ClientRawResponse if raw=true
+ :rtype: ~azure.mgmt.netapp.models.SnapshotPolicyVolumeList or
+ ~msrest.pipeline.ClientRawResponse
+ :raises: :class:`CloudError`
+ """
+ # Construct URL
+ url = self.list_volumes.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'snapshotPolicyName': self._serialize.url("snapshot_policy_name", snapshot_policy_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ deserialized = None
+ if response.status_code == 200:
+ deserialized = self._deserialize('SnapshotPolicyVolumeList', response)
+
+ if raw:
+ client_raw_response = ClientRawResponse(deserialized, response)
+ return client_raw_response
+
+ return deserialized
+ list_volumes.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName}/listVolumes'}
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 efce67ecfc07..1954b08ae2a7 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
@@ -27,7 +27,7 @@ class SnapshotsOperations(object):
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
- :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-02-01".
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
"""
models = models
@@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer):
self._client = client
self._serialize = serializer
self._deserialize = deserializer
- self.api_version = "2020-02-01"
+ self.api_version = "2020-06-01"
self.config = config
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
new file mode 100644
index 000000000000..079de31514ac
--- /dev/null
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_vaults_operations.py
@@ -0,0 +1,114 @@
+# coding=utf-8
+# --------------------------------------------------------------------------
+# Copyright (c) Microsoft Corporation. All rights reserved.
+# Licensed under the MIT License. See License.txt in the project root for
+# license information.
+#
+# Code generated by Microsoft (R) AutoRest Code Generator.
+# Changes may cause incorrect behavior and will be lost if the code is
+# regenerated.
+# --------------------------------------------------------------------------
+
+import uuid
+from msrest.pipeline import ClientRawResponse
+from msrestazure.azure_exceptions import CloudError
+
+from .. import models
+
+
+class VaultsOperations(object):
+ """VaultsOperations operations.
+
+ You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute.
+
+ :param client: Client for service requests.
+ :param config: Configuration of service client.
+ :param serializer: An object model serializer.
+ :param deserializer: An object model deserializer.
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
+ """
+
+ models = models
+
+ def __init__(self, client, config, serializer, deserializer):
+
+ self._client = client
+ self._serialize = serializer
+ self._deserialize = deserializer
+ self.api_version = "2020-06-01"
+
+ self.config = config
+
+ def list(
+ self, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config):
+ """List vaults.
+
+ List vaults for a Netapp Account.
+
+ :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 dict custom_headers: headers that will be added to the request
+ :param bool raw: returns the direct response alongside the
+ deserialized response
+ :param operation_config: :ref:`Operation configuration
+ overrides`.
+ :return: An iterator like instance of Vault
+ :rtype:
+ ~azure.mgmt.netapp.models.VaultPaged[~azure.mgmt.netapp.models.Vault]
+ :raises: :class:`CloudError`
+ """
+ def prepare_request(next_link=None):
+ if not next_link:
+ # Construct URL
+ url = self.list.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ else:
+ url = next_link
+ query_parameters = {}
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Accept'] = 'application/json'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.get(url, query_parameters, header_parameters)
+ return request
+
+ def internal_paging(next_link=None):
+ request = prepare_request(next_link)
+
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ return response
+
+ # Deserialize response
+ header_dict = None
+ if raw:
+ header_dict = {}
+ deserialized = models.VaultPaged(internal_paging, self._deserialize.dependencies, header_dict)
+
+ return deserialized
+ list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/vaults'}
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 c38982b89a93..7a819a458c3d 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
@@ -27,7 +27,7 @@ class VolumesOperations(object):
:param config: Configuration of service client.
:param serializer: An object model serializer.
:param deserializer: An object model deserializer.
- :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-02-01".
+ :ivar api_version: Version of the API to be used with the client request. Constant value: "2020-06-01".
"""
models = models
@@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer):
self._client = client
self._serialize = serializer
self._deserialize = deserializer
- self.api_version = "2020-02-01"
+ self.api_version = "2020-06-01"
self.config = config
@@ -598,7 +598,11 @@ def get_long_running_output(response):
def _break_replication_initial(
- self, resource_group_name, account_name, pool_name, volume_name, custom_headers=None, raw=False, **operation_config):
+ self, resource_group_name, account_name, pool_name, volume_name, force_break_replication=None, custom_headers=None, raw=False, **operation_config):
+ body = None
+ if force_break_replication is not None:
+ body = models.BreakReplicationRequest(force_break_replication=force_break_replication)
+
# Construct URL
url = self.break_replication.metadata['url']
path_format_arguments = {
@@ -616,6 +620,7 @@ def _break_replication_initial(
# Construct headers
header_parameters = {}
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
if self.config.generate_client_request_id:
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
if custom_headers:
@@ -623,8 +628,14 @@ def _break_replication_initial(
if self.config.accept_language is not None:
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+ # Construct body
+ if body is not None:
+ body_content = self._serialize.body(body, 'BreakReplicationRequest')
+ else:
+ body_content = None
+
# Construct and send request
- request = self._client.post(url, query_parameters, header_parameters)
+ request = self._client.post(url, query_parameters, header_parameters, body_content)
response = self._client.send(request, stream=False, **operation_config)
if response.status_code not in [200, 202]:
@@ -637,7 +648,7 @@ def _break_replication_initial(
return client_raw_response
def break_replication(
- self, resource_group_name, account_name, pool_name, volume_name, custom_headers=None, raw=False, polling=True, **operation_config):
+ self, resource_group_name, account_name, pool_name, volume_name, force_break_replication=None, custom_headers=None, raw=False, polling=True, **operation_config):
"""Break volume replication.
Break the replication connection on the destination volume.
@@ -650,6 +661,9 @@ def break_replication(
:type pool_name: str
:param volume_name: The name of the volume
:type volume_name: str
+ :param force_break_replication: If replication is in status
+ transferring and you want to force break the replication, set to true
+ :type force_break_replication: bool
:param dict custom_headers: headers that will be added to the request
:param bool raw: The poller return type is ClientRawResponse, the
direct response alongside the deserialized response
@@ -666,6 +680,7 @@ def break_replication(
account_name=account_name,
pool_name=pool_name,
volume_name=volume_name,
+ force_break_replication=force_break_replication,
custom_headers=custom_headers,
raw=True,
**operation_config
@@ -1032,3 +1047,190 @@ def get_long_running_output(response):
else: polling_method = polling
return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
authorize_replication.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/authorizeReplication'}
+
+
+ def _re_initialize_replication_initial(
+ self, resource_group_name, account_name, pool_name, volume_name, custom_headers=None, raw=False, **operation_config):
+ # Construct URL
+ url = self.re_initialize_replication.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'poolName': self._serialize.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': self._serialize.url("volume_name", volume_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z][a-zA-Z0-9\-_]{0,63}$')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct and send request
+ request = self._client.post(url, query_parameters, header_parameters)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 202]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ def re_initialize_replication(
+ self, resource_group_name, account_name, pool_name, volume_name, custom_headers=None, raw=False, polling=True, **operation_config):
+ """ReInitialize volume replication.
+
+ Re-Initializes the replication connection on the destination volume.
+
+ :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 dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns None or
+ ClientRawResponse if raw==True
+ :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._re_initialize_replication_initial(
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ pool_name=pool_name,
+ volume_name=volume_name,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ re_initialize_replication.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/reinitializeReplication'}
+
+
+ def _pool_change_initial(
+ self, resource_group_name, account_name, pool_name, volume_name, new_pool_resource_id, custom_headers=None, raw=False, **operation_config):
+ body = models.PoolChangeRequest(new_pool_resource_id=new_pool_resource_id)
+
+ # Construct URL
+ url = self.pool_change.metadata['url']
+ path_format_arguments = {
+ 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'),
+ 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', max_length=90, min_length=1, pattern=r'^[-\w\._\(\)]+$'),
+ 'accountName': self._serialize.url("account_name", account_name, 'str'),
+ 'poolName': self._serialize.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': self._serialize.url("volume_name", volume_name, 'str', max_length=64, min_length=1, pattern=r'^[a-zA-Z][a-zA-Z0-9\-_]{0,63}$')
+ }
+ url = self._client.format_url(url, **path_format_arguments)
+
+ # Construct parameters
+ query_parameters = {}
+ query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
+
+ # Construct headers
+ header_parameters = {}
+ header_parameters['Content-Type'] = 'application/json; charset=utf-8'
+ if self.config.generate_client_request_id:
+ header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
+ if custom_headers:
+ header_parameters.update(custom_headers)
+ if self.config.accept_language is not None:
+ header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
+
+ # Construct body
+ body_content = self._serialize.body(body, 'PoolChangeRequest')
+
+ # Construct and send request
+ request = self._client.post(url, query_parameters, header_parameters, body_content)
+ response = self._client.send(request, stream=False, **operation_config)
+
+ if response.status_code not in [200, 202]:
+ exp = CloudError(response)
+ exp.request_id = response.headers.get('x-ms-request-id')
+ raise exp
+
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ def pool_change(
+ self, resource_group_name, account_name, pool_name, volume_name, new_pool_resource_id, custom_headers=None, raw=False, polling=True, **operation_config):
+ """Change pool for volume.
+
+ Moves volume to another pool.
+
+ :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 new_pool_resource_id: Resource id of the pool to move volume to
+ :type new_pool_resource_id: str
+ :param dict custom_headers: headers that will be added to the request
+ :param bool raw: The poller return type is ClientRawResponse, the
+ direct response alongside the deserialized response
+ :param polling: True for ARMPolling, False for no polling, or a
+ polling object for personal polling strategy
+ :return: An instance of LROPoller that returns None or
+ ClientRawResponse if raw==True
+ :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or
+ ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]]
+ :raises: :class:`CloudError`
+ """
+ raw_result = self._pool_change_initial(
+ resource_group_name=resource_group_name,
+ account_name=account_name,
+ pool_name=pool_name,
+ volume_name=volume_name,
+ new_pool_resource_id=new_pool_resource_id,
+ custom_headers=custom_headers,
+ raw=True,
+ **operation_config
+ )
+
+ def get_long_running_output(response):
+ if raw:
+ client_raw_response = ClientRawResponse(None, response)
+ return client_raw_response
+
+ lro_delay = operation_config.get(
+ 'long_running_operation_timeout',
+ self.config.long_running_operation_timeout)
+ if polling is True: polling_method = ARMPolling(lro_delay, **operation_config)
+ elif polling is False: polling_method = NoPolling()
+ else: polling_method = polling
+ return LROPoller(self._client, raw_result, get_long_running_output, polling_method)
+ pool_change.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes/{volumeName}/poolChange'}
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 0572370bbea0..aeae719acfc3 100644
--- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/version.py
+++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/version.py
@@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------
-VERSION = "0.12.0"
+VERSION = "0.13.0"
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml
index fc44afea7630..4956d2430ad7 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,20 +13,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A21%3A38.2678684Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A08%3A24.6129411Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1983be26-5410-46b2-9fa5-bbea6dc7a76c?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a33a4699-73cd-4736-84f0-5eb4a934f171?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -34,9 +34,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:21:39 GMT
+ - Wed, 02 Sep 2020 13:08:25 GMT
etag:
- - W/"datetime'2020-08-09T13%3A21%3A38.2678684Z'"
+ - W/"datetime'2020-09-02T13%3A08%3A24.6129411Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1983be26-5410-46b2-9fa5-bbea6dc7a76c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a33a4699-73cd-4736-84f0-5eb4a934f171?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1983be26-5410-46b2-9fa5-bbea6dc7a76c","name":"1983be26-5410-46b2-9fa5-bbea6dc7a76c","status":"Succeeded","startTime":"2020-08-09T13:21:38.1793424Z","endTime":"2020-08-09T13:21:38.3356144Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a33a4699-73cd-4736-84f0-5eb4a934f171","name":"a33a4699-73cd-4736-84f0-5eb4a934f171","status":"Succeeded","startTime":"2020-09-02T13:08:24.5007878Z","endTime":"2020-09-02T13:08:24.6882333Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:22:11 GMT
+ - Wed, 02 Sep 2020 13:08:57 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A21%3A38.3409213Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A08%3A24.6869933Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:22:12 GMT
+ - Wed, 02 Sep 2020 13:08:57 GMT
etag:
- - W/"datetime'2020-08-09T13%3A21%3A38.3409213Z'"
+ - W/"datetime'2020-09-02T13%3A08%3A24.6869933Z'"
expires:
- '-1'
pragma:
@@ -166,15 +166,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A21%3A38.3409213Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A08%3A24.6869933Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}]}'
headers:
access-control-expose-headers:
- Request-Context
@@ -185,7 +185,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:22:12 GMT
+ - Wed, 02 Sep 2020 13:08:57 GMT
expires:
- '-1'
pragma:
@@ -219,12 +219,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -232,17 +232,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/052fbf4e-1def-4af6-b38d-87cba0ff6d3e?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b9a21f4a-3d1b-4513-a4fe-36e380a8d6e6?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:22:13 GMT
+ - Wed, 02 Sep 2020 13:08:58 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/052fbf4e-1def-4af6-b38d-87cba0ff6d3e?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b9a21f4a-3d1b-4513-a4fe-36e380a8d6e6?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -270,13 +270,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/052fbf4e-1def-4af6-b38d-87cba0ff6d3e?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b9a21f4a-3d1b-4513-a4fe-36e380a8d6e6?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/052fbf4e-1def-4af6-b38d-87cba0ff6d3e","name":"052fbf4e-1def-4af6-b38d-87cba0ff6d3e","status":"Succeeded","startTime":"2020-08-09T13:22:13.8982117Z","endTime":"2020-08-09T13:22:14.0075295Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b9a21f4a-3d1b-4513-a4fe-36e380a8d6e6","name":"b9a21f4a-3d1b-4513-a4fe-36e380a8d6e6","status":"Succeeded","startTime":"2020-09-02T13:08:58.7969211Z","endTime":"2020-09-02T13:08:58.9219278Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -287,7 +287,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:22:45 GMT
+ - Wed, 02 Sep 2020 13:09:29 GMT
expires:
- '-1'
pragma:
@@ -319,12 +319,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -338,7 +338,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:22:45 GMT
+ - Wed, 02 Sep 2020 13:09:29 GMT
expires:
- '-1'
pragma:
@@ -362,12 +362,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-06-01
response:
body:
string: '{"value":[]}'
@@ -379,7 +379,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:22:45 GMT
+ - Wed, 02 Sep 2020 13:09:30 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml
index 9f87247531b6..7269eef8fe74 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,30 +13,30 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A22%3A55.6744347Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A20%3A53.3615329Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/278d157e-b3da-48c6-bac7-cf8bd4c4eced?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6ea6a3f8-69f1-45b9-a0a5-cd79d114124b?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '348'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:22:56 GMT
+ - Wed, 02 Sep 2020 13:20:54 GMT
etag:
- - W/"datetime'2020-08-09T13%3A22%3A55.6744347Z'"
+ - W/"datetime'2020-09-02T13%3A20%3A53.3615329Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/278d157e-b3da-48c6-bac7-cf8bd4c4eced?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6ea6a3f8-69f1-45b9-a0a5-cd79d114124b?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/278d157e-b3da-48c6-bac7-cf8bd4c4eced","name":"278d157e-b3da-48c6-bac7-cf8bd4c4eced","status":"Succeeded","startTime":"2020-08-09T13:22:55.6097882Z","endTime":"2020-08-09T13:22:55.7347232Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/6ea6a3f8-69f1-45b9-a0a5-cd79d114124b","name":"6ea6a3f8-69f1-45b9-a0a5-cd79d114124b","status":"Succeeded","startTime":"2020-09-02T13:20:53.2821849Z","endTime":"2020-09-02T13:20:53.4227574Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:23:28 GMT
+ - Wed, 02 Sep 2020 13:21:25 GMT
expires:
- '-1'
pragma:
@@ -115,26 +115,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A22%3A55.7354789Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A20%3A53.425578Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '348'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:23:28 GMT
+ - Wed, 02 Sep 2020 13:21:25 GMT
etag:
- - W/"datetime'2020-08-09T13%3A22%3A55.7354789Z'"
+ - W/"datetime'2020-09-02T13%3A20%3A53.425578Z'"
expires:
- '-1'
pragma:
@@ -166,28 +166,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A22%3A55.7354789Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A20%3A53.425578Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '348'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:23:29 GMT
+ - Wed, 02 Sep 2020 13:21:26 GMT
etag:
- - W/"datetime'2020-08-09T13%3A22%3A55.7354789Z'"
+ - W/"datetime'2020-09-02T13%3A20%3A53.425578Z'"
expires:
- '-1'
pragma:
@@ -221,12 +221,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -234,17 +234,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69d3b13d-2522-4547-9f4e-91461cdaa43a?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a544aab2-c0f9-4def-98e7-c35e37a564fd?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:23:30 GMT
+ - Wed, 02 Sep 2020 13:21:27 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69d3b13d-2522-4547-9f4e-91461cdaa43a?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a544aab2-c0f9-4def-98e7-c35e37a564fd?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -272,13 +272,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69d3b13d-2522-4547-9f4e-91461cdaa43a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a544aab2-c0f9-4def-98e7-c35e37a564fd?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/69d3b13d-2522-4547-9f4e-91461cdaa43a","name":"69d3b13d-2522-4547-9f4e-91461cdaa43a","status":"Succeeded","startTime":"2020-08-09T13:23:30.6943448Z","endTime":"2020-08-09T13:23:30.7724857Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a544aab2-c0f9-4def-98e7-c35e37a564fd","name":"a544aab2-c0f9-4def-98e7-c35e37a564fd","status":"Succeeded","startTime":"2020-09-02T13:21:27.4614371Z","endTime":"2020-09-02T13:21:27.5707755Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -289,7 +289,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:24:01 GMT
+ - Wed, 02 Sep 2020 13:21:58 GMT
expires:
- '-1'
pragma:
@@ -321,12 +321,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -340,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:24:02 GMT
+ - Wed, 02 Sep 2020 13:21:58 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml
index bb7735811141..97fb4e352e30 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,20 +13,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A24%3A12.7567705Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A17%3A51.3272532Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e4d0dd5-edf9-4484-a4f4-e56f9845d0dc?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9f15c8a4-b20d-4fff-830d-ace80cf0ec43?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -34,9 +34,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:24:13 GMT
+ - Wed, 02 Sep 2020 13:17:52 GMT
etag:
- - W/"datetime'2020-08-09T13%3A24%3A12.7567705Z'"
+ - W/"datetime'2020-09-02T13%3A17%3A51.3272532Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e4d0dd5-edf9-4484-a4f4-e56f9845d0dc?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9f15c8a4-b20d-4fff-830d-ace80cf0ec43?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1e4d0dd5-edf9-4484-a4f4-e56f9845d0dc","name":"1e4d0dd5-edf9-4484-a4f4-e56f9845d0dc","status":"Succeeded","startTime":"2020-08-09T13:24:12.6687267Z","endTime":"2020-08-09T13:24:12.8093517Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/9f15c8a4-b20d-4fff-830d-ace80cf0ec43","name":"9f15c8a4-b20d-4fff-830d-ace80cf0ec43","status":"Succeeded","startTime":"2020-09-02T13:17:51.2439101Z","endTime":"2020-09-02T13:17:51.3845614Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:24:45 GMT
+ - Wed, 02 Sep 2020 13:18:23 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A24%3A12.8168148Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A17%3A51.3852941Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:24:46 GMT
+ - Wed, 02 Sep 2020 13:18:23 GMT
etag:
- - W/"datetime'2020-08-09T13%3A24%3A12.8168148Z'"
+ - W/"datetime'2020-09-02T13%3A17%3A51.3852941Z'"
expires:
- '-1'
pragma:
@@ -157,7 +157,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -170,20 +170,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A24%3A48.8961801Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A18%3A26.7672277Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d6f7309-7f35-4189-8e60-91f2720964a5?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/755e52d3-0bf8-47b2-87b5-5a90f81c7643?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -191,9 +191,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:24:49 GMT
+ - Wed, 02 Sep 2020 13:18:27 GMT
etag:
- - W/"datetime'2020-08-09T13%3A24%3A48.8961801Z'"
+ - W/"datetime'2020-09-02T13%3A18%3A26.7672277Z'"
expires:
- '-1'
pragma:
@@ -223,24 +223,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d6f7309-7f35-4189-8e60-91f2720964a5?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/755e52d3-0bf8-47b2-87b5-5a90f81c7643?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1d6f7309-7f35-4189-8e60-91f2720964a5","name":"1d6f7309-7f35-4189-8e60-91f2720964a5","status":"Succeeded","startTime":"2020-08-09T13:24:48.8442066Z","endTime":"2020-08-09T13:24:48.9535831Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/755e52d3-0bf8-47b2-87b5-5a90f81c7643","name":"755e52d3-0bf8-47b2-87b5-5a90f81c7643","status":"Succeeded","startTime":"2020-09-02T13:18:26.6885739Z","endTime":"2020-09-02T13:18:26.829196Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '511'
+ - '510'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:25:21 GMT
+ - Wed, 02 Sep 2020 13:18:58 GMT
expires:
- '-1'
pragma:
@@ -272,13 +272,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A24%3A48.9602269Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A18%3A26.8302717Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -289,9 +289,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:25:22 GMT
+ - Wed, 02 Sep 2020 13:18:59 GMT
etag:
- - W/"datetime'2020-08-09T13%3A24%3A48.9602269Z'"
+ - W/"datetime'2020-09-02T13%3A18%3A26.8302717Z'"
expires:
- '-1'
pragma:
@@ -323,15 +323,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts?api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A24%3A12.8168148Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A24%3A48.9602269Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A17%3A51.3852941Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A18%3A26.8302717Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}]}'
headers:
access-control-expose-headers:
- Request-Context
@@ -342,7 +342,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:25:22 GMT
+ - Wed, 02 Sep 2020 13:18:59 GMT
expires:
- '-1'
pragma:
@@ -376,12 +376,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -389,17 +389,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ef7b0fd-e520-4fa7-9df3-64b258ccf2d3?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c22eaf8f-de9b-46f3-9807-df5811d2be8b?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:25:23 GMT
+ - Wed, 02 Sep 2020 13:19:00 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ef7b0fd-e520-4fa7-9df3-64b258ccf2d3?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c22eaf8f-de9b-46f3-9807-df5811d2be8b?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -427,13 +427,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ef7b0fd-e520-4fa7-9df3-64b258ccf2d3?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c22eaf8f-de9b-46f3-9807-df5811d2be8b?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0ef7b0fd-e520-4fa7-9df3-64b258ccf2d3","name":"0ef7b0fd-e520-4fa7-9df3-64b258ccf2d3","status":"Succeeded","startTime":"2020-08-09T13:25:23.8797026Z","endTime":"2020-08-09T13:25:23.9890628Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c22eaf8f-de9b-46f3-9807-df5811d2be8b","name":"c22eaf8f-de9b-46f3-9807-df5811d2be8b","status":"Succeeded","startTime":"2020-09-02T13:19:00.4689224Z","endTime":"2020-09-02T13:19:00.5470429Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -444,7 +444,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:25:55 GMT
+ - Wed, 02 Sep 2020 13:19:31 GMT
expires:
- '-1'
pragma:
@@ -476,12 +476,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -495,7 +495,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:25:56 GMT
+ - Wed, 02 Sep 2020 13:19:31 GMT
expires:
- '-1'
pragma:
@@ -521,12 +521,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-06-01
response:
body:
string: ''
@@ -534,17 +534,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a64d1deb-ba0b-4b91-8902-c7d6d522add4?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/adf999ef-cc64-47dc-b842-81b1a8740f18?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:25:57 GMT
+ - Wed, 02 Sep 2020 13:19:32 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a64d1deb-ba0b-4b91-8902-c7d6d522add4?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/adf999ef-cc64-47dc-b842-81b1a8740f18?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -572,24 +572,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a64d1deb-ba0b-4b91-8902-c7d6d522add4?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/adf999ef-cc64-47dc-b842-81b1a8740f18?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a64d1deb-ba0b-4b91-8902-c7d6d522add4","name":"a64d1deb-ba0b-4b91-8902-c7d6d522add4","status":"Succeeded","startTime":"2020-08-09T13:25:57.746542Z","endTime":"2020-08-09T13:25:57.8246354Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/adf999ef-cc64-47dc-b842-81b1a8740f18","name":"adf999ef-cc64-47dc-b842-81b1a8740f18","status":"Succeeded","startTime":"2020-09-02T13:19:33.1443847Z","endTime":"2020-09-02T13:19:33.2381159Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '511'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:26:30 GMT
+ - Wed, 02 Sep 2020 13:20:03 GMT
expires:
- '-1'
pragma:
@@ -621,12 +621,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2''
@@ -640,7 +640,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:26:29 GMT
+ - Wed, 02 Sep 2020 13:20:04 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml
index c6b6dee59695..0be69c9cb889 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,30 +13,30 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A26%3A39.3018098Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A23%3A03.5302629Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2fa050a6-4521-41f4-8aa6-38295524c770?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0dc407f-7d37-4da8-b486-b37284578f8c?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '348'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:26:39 GMT
+ - Wed, 02 Sep 2020 13:23:04 GMT
etag:
- - W/"datetime'2020-08-09T13%3A26%3A39.3018098Z'"
+ - W/"datetime'2020-09-02T13%3A23%3A03.5302629Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2fa050a6-4521-41f4-8aa6-38295524c770?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0dc407f-7d37-4da8-b486-b37284578f8c?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2fa050a6-4521-41f4-8aa6-38295524c770","name":"2fa050a6-4521-41f4-8aa6-38295524c770","status":"Succeeded","startTime":"2020-08-09T13:26:39.2385911Z","endTime":"2020-08-09T13:26:39.3656385Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0dc407f-7d37-4da8-b486-b37284578f8c","name":"c0dc407f-7d37-4da8-b486-b37284578f8c","status":"Succeeded","startTime":"2020-09-02T13:23:03.1470333Z","endTime":"2020-09-02T13:23:03.7112716Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,58 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:27:12 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A26%3A39.3658566Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '348'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 13:27:12 GMT
- etag:
- - W/"datetime'2020-08-09T13%3A26%3A39.3658566Z'"
+ - Wed, 02 Sep 2020 13:23:35 GMT
expires:
- '-1'
pragma:
@@ -166,15 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A26%3A39.3658566Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A23%3A03.7003828Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -185,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:27:13 GMT
+ - Wed, 02 Sep 2020 13:23:35 GMT
etag:
- - W/"datetime'2020-08-09T13%3A26%3A39.3658566Z'"
+ - W/"datetime'2020-09-02T13%3A23%3A03.7003828Z'"
expires:
- '-1'
pragma:
@@ -223,15 +170,15 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A27%3A15.0509338Z''\"","location":"westus2","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A23%3A36.9768327Z''\"","location":"westus2stage","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -242,9 +189,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:27:15 GMT
+ - Wed, 02 Sep 2020 13:23:38 GMT
etag:
- - W/"datetime'2020-08-09T13%3A27%3A15.0509338Z'"
+ - W/"datetime'2020-09-02T13%3A23%3A36.9768327Z'"
expires:
- '-1'
pragma:
@@ -268,59 +215,6 @@ interactions:
status:
code: 200
message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A27%3A15.1239876Z''\"","location":"westus2","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '373'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 13:27:16 GMT
- etag:
- - W/"datetime'2020-08-09T13%3A27%3A15.1239876Z'"
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
- request:
body: null
headers:
@@ -333,12 +227,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -346,17 +240,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b4085ef-0d3e-4fdc-974b-68a7ff982ce6?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86b42ae8-b0a6-40d3-b954-26d0256ae3ce?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:27:17 GMT
+ - Wed, 02 Sep 2020 13:23:39 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b4085ef-0d3e-4fdc-974b-68a7ff982ce6?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86b42ae8-b0a6-40d3-b954-26d0256ae3ce?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -384,13 +278,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b4085ef-0d3e-4fdc-974b-68a7ff982ce6?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86b42ae8-b0a6-40d3-b954-26d0256ae3ce?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2b4085ef-0d3e-4fdc-974b-68a7ff982ce6","name":"2b4085ef-0d3e-4fdc-974b-68a7ff982ce6","status":"Succeeded","startTime":"2020-08-09T13:27:17.6176268Z","endTime":"2020-08-09T13:27:17.7113905Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86b42ae8-b0a6-40d3-b954-26d0256ae3ce","name":"86b42ae8-b0a6-40d3-b954-26d0256ae3ce","status":"Succeeded","startTime":"2020-09-02T13:23:39.3649846Z","endTime":"2020-09-02T13:23:39.4586983Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -401,7 +295,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:27:49 GMT
+ - Wed, 02 Sep 2020 13:24:10 GMT
expires:
- '-1'
pragma:
@@ -433,12 +327,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -452,7 +346,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:27:49 GMT
+ - Wed, 02 Sep 2020 13:24:10 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml
index c020a144df22..19b12c3bd4ec 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,20 +13,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A48%3A04.3808663Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A25%3A24.4729925Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/075c6cc4-b3cd-43db-9205-6d23ab607a9d?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/58cf6f41-eb53-4d26-9538-bdf1f85ec60e?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -34,9 +34,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:48:04 GMT
+ - Wed, 02 Sep 2020 13:25:25 GMT
etag:
- - W/"datetime'2020-08-09T13%3A48%3A04.3808663Z'"
+ - W/"datetime'2020-09-02T13%3A25%3A24.4729925Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/075c6cc4-b3cd-43db-9205-6d23ab607a9d?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/58cf6f41-eb53-4d26-9538-bdf1f85ec60e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/075c6cc4-b3cd-43db-9205-6d23ab607a9d","name":"075c6cc4-b3cd-43db-9205-6d23ab607a9d","status":"Succeeded","startTime":"2020-08-09T13:48:04.225687Z","endTime":"2020-08-09T13:48:04.4913404Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/58cf6f41-eb53-4d26-9538-bdf1f85ec60e","name":"58cf6f41-eb53-4d26-9538-bdf1f85ec60e","status":"Succeeded","startTime":"2020-09-02T13:25:24.3913597Z","endTime":"2020-09-02T13:25:24.547676Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:48:37 GMT
+ - Wed, 02 Sep 2020 13:25:57 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A48%3A04.4569215Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A25%3A24.5410409Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:48:37 GMT
+ - Wed, 02 Sep 2020 13:25:57 GMT
etag:
- - W/"datetime'2020-08-09T13%3A48%3A04.4569215Z'"
+ - W/"datetime'2020-09-02T13%3A25%3A24.5410409Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A48%3A40.4942569Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A25%3A59.8961053Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/102abcc9-99d3-4483-b8ac-33421fa282b0?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0e65ddd-5b46-4a42-a2fa-5a1b84c2504f?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:48:41 GMT
+ - Wed, 02 Sep 2020 13:26:00 GMT
etag:
- - W/"datetime'2020-08-09T13%3A48%3A40.4942569Z'"
+ - W/"datetime'2020-09-02T13%3A25%3A59.8961053Z'"
expires:
- '-1'
pragma:
@@ -226,24 +226,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/102abcc9-99d3-4483-b8ac-33421fa282b0?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0e65ddd-5b46-4a42-a2fa-5a1b84c2504f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/102abcc9-99d3-4483-b8ac-33421fa282b0","name":"102abcc9-99d3-4483-b8ac-33421fa282b0","status":"Succeeded","startTime":"2020-08-09T13:48:40.4016373Z","endTime":"2020-08-09T13:48:40.6359791Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0e65ddd-5b46-4a42-a2fa-5a1b84c2504f","name":"e0e65ddd-5b46-4a42-a2fa-5a1b84c2504f","status":"Succeeded","startTime":"2020-09-02T13:25:59.836599Z","endTime":"2020-09-02T13:26:00.1021778Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '544'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:49:13 GMT
+ - Wed, 02 Sep 2020 13:26:32 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A48%3A40.6383617Z''\"","location":"westus2","properties":{"poolId":"f44689e4-e8e2-076d-5574-93d7dae240ab","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A26%3A00.0992484Z''\"","location":"westus2stage","properties":{"poolId":"5f7fda8e-cb18-72dd-11d7-91ade0681d62","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:49:14 GMT
+ - Wed, 02 Sep 2020 13:26:32 GMT
etag:
- - W/"datetime'2020-08-09T13%3A48%3A40.6383617Z'"
+ - W/"datetime'2020-09-02T13%3A26%3A00.0992484Z'"
expires:
- '-1'
pragma:
@@ -326,26 +326,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A48%3A40.6383617Z''\"","location":"westus2","properties":{"poolId":"f44689e4-e8e2-076d-5574-93d7dae240ab","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A26%3A00.0992484Z''\"","location":"westus2stage","properties":{"poolId":"5f7fda8e-cb18-72dd-11d7-91ade0681d62","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}]}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '522'
+ - '600'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:49:15 GMT
+ - Wed, 02 Sep 2020 13:26:32 GMT
expires:
- '-1'
pragma:
@@ -379,12 +379,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -392,17 +392,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d15ad67-59fb-4dff-9226-1b48f0f2b879?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e7f9587-0a29-4293-8e19-4c000bffcc85?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:49:16 GMT
+ - Wed, 02 Sep 2020 13:26:33 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d15ad67-59fb-4dff-9226-1b48f0f2b879?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e7f9587-0a29-4293-8e19-4c000bffcc85?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -430,13 +430,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d15ad67-59fb-4dff-9226-1b48f0f2b879?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e7f9587-0a29-4293-8e19-4c000bffcc85?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0d15ad67-59fb-4dff-9226-1b48f0f2b879","name":"0d15ad67-59fb-4dff-9226-1b48f0f2b879","status":"Succeeded","startTime":"2020-08-09T13:49:16.5667575Z","endTime":"2020-08-09T13:49:16.8167351Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e7f9587-0a29-4293-8e19-4c000bffcc85","name":"3e7f9587-0a29-4293-8e19-4c000bffcc85","status":"Succeeded","startTime":"2020-09-02T13:26:34.1141578Z","endTime":"2020-09-02T13:26:34.3329276Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -447,7 +447,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:49:48 GMT
+ - Wed, 02 Sep 2020 13:27:05 GMT
expires:
- '-1'
pragma:
@@ -479,12 +479,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2020-06-01
response:
body:
string: '{"value":[]}'
@@ -498,7 +498,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:49:48 GMT
+ - Wed, 02 Sep 2020 13:27:05 GMT
expires:
- '-1'
pragma:
@@ -530,12 +530,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -549,7 +549,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:49:59 GMT
+ - Wed, 02 Sep 2020 13:27:15 GMT
expires:
- '-1'
pragma:
@@ -575,12 +575,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -588,17 +588,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59575c22-a490-4255-8539-d1ceecd1bc45?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aff78b3f-860f-4ce9-bc02-e5aef350facf?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:50:00 GMT
+ - Wed, 02 Sep 2020 13:27:16 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59575c22-a490-4255-8539-d1ceecd1bc45?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aff78b3f-860f-4ce9-bc02-e5aef350facf?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -626,13 +626,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59575c22-a490-4255-8539-d1ceecd1bc45?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aff78b3f-860f-4ce9-bc02-e5aef350facf?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/59575c22-a490-4255-8539-d1ceecd1bc45","name":"59575c22-a490-4255-8539-d1ceecd1bc45","status":"Succeeded","startTime":"2020-08-09T13:50:00.8271906Z","endTime":"2020-08-09T13:50:00.9209811Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aff78b3f-860f-4ce9-bc02-e5aef350facf","name":"aff78b3f-860f-4ce9-bc02-e5aef350facf","status":"Succeeded","startTime":"2020-09-02T13:27:16.7957399Z","endTime":"2020-09-02T13:27:16.8894457Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -643,7 +643,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:50:33 GMT
+ - Wed, 02 Sep 2020 13:27:47 GMT
expires:
- '-1'
pragma:
@@ -675,12 +675,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -694,7 +694,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:50:35 GMT
+ - Wed, 02 Sep 2020 13:27:49 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml
index 98c07a351781..b8a37235198c 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,20 +13,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A50%3A44.2857199Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A34%3A04.0501148Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/380066f7-5005-4c4b-9807-2af993c07a29?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f11f0bf1-a8cf-446f-9573-8c36ead27ab3?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -34,9 +34,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:50:44 GMT
+ - Wed, 02 Sep 2020 13:34:05 GMT
etag:
- - W/"datetime'2020-08-09T13%3A50%3A44.2857199Z'"
+ - W/"datetime'2020-09-02T13%3A34%3A04.0501148Z'"
expires:
- '-1'
pragma:
@@ -66,24 +66,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/380066f7-5005-4c4b-9807-2af993c07a29?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f11f0bf1-a8cf-446f-9573-8c36ead27ab3?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/380066f7-5005-4c4b-9807-2af993c07a29","name":"380066f7-5005-4c4b-9807-2af993c07a29","status":"Succeeded","startTime":"2020-08-09T13:50:44.2334344Z","endTime":"2020-08-09T13:50:44.358434Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f11f0bf1-a8cf-446f-9573-8c36ead27ab3","name":"f11f0bf1-a8cf-446f-9573-8c36ead27ab3","status":"Succeeded","startTime":"2020-09-02T13:34:03.9839699Z","endTime":"2020-09-02T13:34:04.1245928Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '511'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:51:17 GMT
+ - Wed, 02 Sep 2020 13:34:36 GMT
expires:
- '-1'
pragma:
@@ -115,26 +115,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A50%3A44.3407601Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A34%3A04.122166Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '348'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:51:17 GMT
+ - Wed, 02 Sep 2020 13:34:36 GMT
etag:
- - W/"datetime'2020-08-09T13%3A50%3A44.3407601Z'"
+ - W/"datetime'2020-09-02T13%3A34%3A04.122166Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A51%3A20.7503671Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A34%3A39.2699343Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f47e087c-35ca-44a1-bb13-478a6b5b73ae?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0006cd7b-3e0a-4427-822d-5109f707c512?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:51:21 GMT
+ - Wed, 02 Sep 2020 13:34:40 GMT
etag:
- - W/"datetime'2020-08-09T13%3A51%3A20.7503671Z'"
+ - W/"datetime'2020-09-02T13%3A34%3A39.2699343Z'"
expires:
- '-1'
pragma:
@@ -226,24 +226,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f47e087c-35ca-44a1-bb13-478a6b5b73ae?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0006cd7b-3e0a-4427-822d-5109f707c512?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f47e087c-35ca-44a1-bb13-478a6b5b73ae","name":"f47e087c-35ca-44a1-bb13-478a6b5b73ae","status":"Succeeded","startTime":"2020-08-09T13:51:20.6453107Z","endTime":"2020-08-09T13:51:21.0671857Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0006cd7b-3e0a-4427-822d-5109f707c512","name":"0006cd7b-3e0a-4427-822d-5109f707c512","status":"Succeeded","startTime":"2020-09-02T13:34:39.1930057Z","endTime":"2020-09-02T13:34:39.443029Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '544'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:51:53 GMT
+ - Wed, 02 Sep 2020 13:35:11 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A51%3A21.0736033Z''\"","location":"westus2","properties":{"poolId":"bd0499ed-0943-a36a-ce5c-51cd70d252a6","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A34%3A39.4420556Z''\"","location":"westus2stage","properties":{"poolId":"fce6a965-3ccd-e6e1-438d-cbf5f837b898","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:51:53 GMT
+ - Wed, 02 Sep 2020 13:35:12 GMT
etag:
- - W/"datetime'2020-08-09T13%3A51%3A21.0736033Z'"
+ - W/"datetime'2020-09-02T13%3A34%3A39.4420556Z'"
expires:
- '-1'
pragma:
@@ -326,28 +326,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A51%3A21.0736033Z''\"","location":"westus2","properties":{"poolId":"bd0499ed-0943-a36a-ce5c-51cd70d252a6","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A34%3A39.4420556Z''\"","location":"westus2stage","properties":{"poolId":"fce6a965-3ccd-e6e1-438d-cbf5f837b898","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:51:54 GMT
+ - Wed, 02 Sep 2020 13:35:12 GMT
etag:
- - W/"datetime'2020-08-09T13%3A51%3A21.0736033Z'"
+ - W/"datetime'2020-09-02T13%3A34%3A39.4420556Z'"
expires:
- '-1'
pragma:
@@ -381,12 +381,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -394,17 +394,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44678999-b8b2-4454-a76e-a79b37aa2703?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb7c941c-cf9a-44d9-b3f5-c5b82fee5d6e?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:51:55 GMT
+ - Wed, 02 Sep 2020 13:35:13 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44678999-b8b2-4454-a76e-a79b37aa2703?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb7c941c-cf9a-44d9-b3f5-c5b82fee5d6e?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -432,24 +432,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44678999-b8b2-4454-a76e-a79b37aa2703?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb7c941c-cf9a-44d9-b3f5-c5b82fee5d6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/44678999-b8b2-4454-a76e-a79b37aa2703","name":"44678999-b8b2-4454-a76e-a79b37aa2703","status":"Succeeded","startTime":"2020-08-09T13:51:56.132666Z","endTime":"2020-08-09T13:51:56.3357761Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bb7c941c-cf9a-44d9-b3f5-c5b82fee5d6e","name":"bb7c941c-cf9a-44d9-b3f5-c5b82fee5d6e","status":"Succeeded","startTime":"2020-09-02T13:35:13.6817125Z","endTime":"2020-09-02T13:35:13.9003952Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '544'
+ - '545'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:52:28 GMT
+ - Wed, 02 Sep 2020 13:35:44 GMT
expires:
- '-1'
pragma:
@@ -481,12 +481,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -500,7 +500,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:52:38 GMT
+ - Wed, 02 Sep 2020 13:35:55 GMT
expires:
- '-1'
pragma:
@@ -526,12 +526,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -539,17 +539,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76ace903-1475-49c8-8de9-c0a65b7a0a7d?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd0ec24f-b26c-4405-a647-4ee8a8c96f35?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:52:39 GMT
+ - Wed, 02 Sep 2020 13:35:56 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76ace903-1475-49c8-8de9-c0a65b7a0a7d?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd0ec24f-b26c-4405-a647-4ee8a8c96f35?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -577,24 +577,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76ace903-1475-49c8-8de9-c0a65b7a0a7d?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd0ec24f-b26c-4405-a647-4ee8a8c96f35?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/76ace903-1475-49c8-8de9-c0a65b7a0a7d","name":"76ace903-1475-49c8-8de9-c0a65b7a0a7d","status":"Succeeded","startTime":"2020-08-09T13:52:39.9377331Z","endTime":"2020-08-09T13:52:40.062673Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cd0ec24f-b26c-4405-a647-4ee8a8c96f35","name":"cd0ec24f-b26c-4405-a647-4ee8a8c96f35","status":"Succeeded","startTime":"2020-09-02T13:35:56.1965938Z","endTime":"2020-09-02T13:35:56.3084526Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '511'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:53:11 GMT
+ - Wed, 02 Sep 2020 13:36:27 GMT
expires:
- '-1'
pragma:
@@ -626,12 +626,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -645,7 +645,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:53:14 GMT
+ - Wed, 02 Sep 2020 13:36:29 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml
index 30a054acd733..5424664b4426 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,20 +13,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A53%3A22.8056636Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A29%3A33.4083934Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e300fa0-bdcc-451c-8912-d5fe74ed616d?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ccad1ebc-7c88-4e3a-888c-32e1269ea9a9?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -34,9 +34,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:53:23 GMT
+ - Wed, 02 Sep 2020 13:29:34 GMT
etag:
- - W/"datetime'2020-08-09T13%3A53%3A22.8056636Z'"
+ - W/"datetime'2020-09-02T13%3A29%3A33.4083934Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e300fa0-bdcc-451c-8912-d5fe74ed616d?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ccad1ebc-7c88-4e3a-888c-32e1269ea9a9?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e300fa0-bdcc-451c-8912-d5fe74ed616d","name":"4e300fa0-bdcc-451c-8912-d5fe74ed616d","status":"Succeeded","startTime":"2020-08-09T13:53:22.7328332Z","endTime":"2020-08-09T13:53:22.8734602Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ccad1ebc-7c88-4e3a-888c-32e1269ea9a9","name":"ccad1ebc-7c88-4e3a-888c-32e1269ea9a9","status":"Succeeded","startTime":"2020-09-02T13:29:33.3273844Z","endTime":"2020-09-02T13:29:33.4680778Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:53:56 GMT
+ - Wed, 02 Sep 2020 13:30:05 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A53%3A22.8697108Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A29%3A33.4704371Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:53:56 GMT
+ - Wed, 02 Sep 2020 13:30:06 GMT
etag:
- - W/"datetime'2020-08-09T13%3A53%3A22.8697108Z'"
+ - W/"datetime'2020-09-02T13%3A29%3A33.4704371Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A53%3A59.7676747Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A30%3A09.2916808Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4bb46d0-e6cf-4843-89e8-0d6aef0b2d06?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0bb1de8-a248-4e17-a95e-4c35c14dc7bd?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:54:00 GMT
+ - Wed, 02 Sep 2020 13:30:09 GMT
etag:
- - W/"datetime'2020-08-09T13%3A53%3A59.7676747Z'"
+ - W/"datetime'2020-09-02T13%3A30%3A09.2916808Z'"
expires:
- '-1'
pragma:
@@ -226,24 +226,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4bb46d0-e6cf-4843-89e8-0d6aef0b2d06?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0bb1de8-a248-4e17-a95e-4c35c14dc7bd?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e4bb46d0-e6cf-4843-89e8-0d6aef0b2d06","name":"e4bb46d0-e6cf-4843-89e8-0d6aef0b2d06","status":"Succeeded","startTime":"2020-08-09T13:53:59.6888626Z","endTime":"2020-08-09T13:53:59.9419694Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c0bb1de8-a248-4e17-a95e-4c35c14dc7bd","name":"c0bb1de8-a248-4e17-a95e-4c35c14dc7bd","status":"Succeeded","startTime":"2020-09-02T13:30:09.239063Z","endTime":"2020-09-02T13:30:09.5204087Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '544'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:54:32 GMT
+ - Wed, 02 Sep 2020 13:30:41 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A53%3A59.9357971Z''\"","location":"westus2","properties":{"poolId":"ec545e38-4790-af77-25ab-a2ed268bca5a","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A30%3A09.5018285Z''\"","location":"westus2stage","properties":{"poolId":"b5428b3d-3f3c-2a72-97c7-21e777792578","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:54:32 GMT
+ - Wed, 02 Sep 2020 13:30:42 GMT
etag:
- - W/"datetime'2020-08-09T13%3A53%3A59.9357971Z'"
+ - W/"datetime'2020-09-02T13%3A30%3A09.5018285Z'"
expires:
- '-1'
pragma:
@@ -317,8 +317,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -327,36 +327,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-08-09T13%3A54%3A34.9573967Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-09-02T13%3A30%3A44.1702593Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6157661-3857-43c5-8b95-ba69936c1700?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92b9c280-fc95-4186-84b4-4779aafadb6e?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:54:35 GMT
+ - Wed, 02 Sep 2020 13:30:45 GMT
etag:
- - W/"datetime'2020-08-09T13%3A54%3A34.9573967Z'"
+ - W/"datetime'2020-09-02T13%3A30%3A44.1702593Z'"
expires:
- '-1'
pragma:
@@ -386,13 +386,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6157661-3857-43c5-8b95-ba69936c1700?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92b9c280-fc95-4186-84b4-4779aafadb6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6157661-3857-43c5-8b95-ba69936c1700","name":"e6157661-3857-43c5-8b95-ba69936c1700","status":"Succeeded","startTime":"2020-08-09T13:54:34.9221672Z","endTime":"2020-08-09T13:54:35.1565297Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92b9c280-fc95-4186-84b4-4779aafadb6e","name":"92b9c280-fc95-4186-84b4-4779aafadb6e","status":"Succeeded","startTime":"2020-09-02T13:30:44.1040101Z","endTime":"2020-09-02T13:30:44.3384083Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -403,7 +403,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:55:07 GMT
+ - Wed, 02 Sep 2020 13:31:16 GMT
expires:
- '-1'
pragma:
@@ -435,26 +435,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-08-09T13%3A54%3A35.1635473Z''\"","location":"westus2","properties":{"poolId":"71a5b54a-8fdc-7a63-7f1a-8b38c7b86841","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-09-02T13%3A30%3A44.344382Z''\"","location":"westus2stage","properties":{"poolId":"d4b12246-2f1e-7f26-e010-429fb8f57b5e","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '587'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:55:07 GMT
+ - Wed, 02 Sep 2020 13:31:17 GMT
etag:
- - W/"datetime'2020-08-09T13%3A54%3A35.1635473Z'"
+ - W/"datetime'2020-09-02T13%3A30%3A44.344382Z'"
expires:
- '-1'
pragma:
@@ -486,26 +486,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A53%3A59.9357971Z''\"","location":"westus2","properties":{"poolId":"ec545e38-4790-af77-25ab-a2ed268bca5a","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-08-09T13%3A54%3A35.1635473Z''\"","location":"westus2","properties":{"poolId":"71a5b54a-8fdc-7a63-7f1a-8b38c7b86841","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A30%3A09.5018285Z''\"","location":"westus2stage","properties":{"poolId":"b5428b3d-3f3c-2a72-97c7-21e777792578","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2020-09-02T13%3A30%3A44.344382Z''\"","location":"westus2stage","properties":{"poolId":"d4b12246-2f1e-7f26-e010-429fb8f57b5e","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}]}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1033'
+ - '1188'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:55:08 GMT
+ - Wed, 02 Sep 2020 13:31:17 GMT
expires:
- '-1'
pragma:
@@ -539,12 +539,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -552,17 +552,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b65faacd-13de-4bea-a889-18ea34ec3dcc?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4e3d8ca3-f656-4347-8fe0-cd4f20d0c1bc?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:55:09 GMT
+ - Wed, 02 Sep 2020 13:31:18 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b65faacd-13de-4bea-a889-18ea34ec3dcc?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4e3d8ca3-f656-4347-8fe0-cd4f20d0c1bc?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -590,13 +590,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b65faacd-13de-4bea-a889-18ea34ec3dcc?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4e3d8ca3-f656-4347-8fe0-cd4f20d0c1bc?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b65faacd-13de-4bea-a889-18ea34ec3dcc","name":"b65faacd-13de-4bea-a889-18ea34ec3dcc","status":"Succeeded","startTime":"2020-08-09T13:55:09.9463466Z","endTime":"2020-08-09T13:55:10.1806594Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4e3d8ca3-f656-4347-8fe0-cd4f20d0c1bc","name":"4e3d8ca3-f656-4347-8fe0-cd4f20d0c1bc","status":"Succeeded","startTime":"2020-09-02T13:31:18.4957896Z","endTime":"2020-09-02T13:31:18.7188876Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -607,7 +607,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:55:41 GMT
+ - Wed, 02 Sep 2020 13:31:49 GMT
expires:
- '-1'
pragma:
@@ -641,12 +641,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
string: ''
@@ -654,17 +654,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/796b01f4-e2c3-4c01-bcac-d2c138811302?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8eafa6a3-3ffb-475d-88ac-1a00fe08eecd?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:55:42 GMT
+ - Wed, 02 Sep 2020 13:31:50 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/796b01f4-e2c3-4c01-bcac-d2c138811302?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8eafa6a3-3ffb-475d-88ac-1a00fe08eecd?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -692,13 +692,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/796b01f4-e2c3-4c01-bcac-d2c138811302?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8eafa6a3-3ffb-475d-88ac-1a00fe08eecd?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/796b01f4-e2c3-4c01-bcac-d2c138811302","name":"796b01f4-e2c3-4c01-bcac-d2c138811302","status":"Succeeded","startTime":"2020-08-09T13:55:43.2456791Z","endTime":"2020-08-09T13:55:43.4487988Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8eafa6a3-3ffb-475d-88ac-1a00fe08eecd","name":"8eafa6a3-3ffb-475d-88ac-1a00fe08eecd","status":"Succeeded","startTime":"2020-09-02T13:31:50.8611966Z","endTime":"2020-09-02T13:31:51.0978308Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -709,7 +709,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:56:14 GMT
+ - Wed, 02 Sep 2020 13:32:20 GMT
expires:
- '-1'
pragma:
@@ -741,12 +741,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -760,7 +760,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:56:25 GMT
+ - Wed, 02 Sep 2020 13:32:31 GMT
expires:
- '-1'
pragma:
@@ -784,12 +784,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -803,7 +803,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:56:36 GMT
+ - Wed, 02 Sep 2020 13:32:41 GMT
expires:
- '-1'
pragma:
@@ -829,12 +829,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -842,17 +842,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac355ee6-4549-4e35-8efa-7a4b89dd817f?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/eee22da9-3664-488a-8030-41df1cc765da?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:56:38 GMT
+ - Wed, 02 Sep 2020 13:32:42 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac355ee6-4549-4e35-8efa-7a4b89dd817f?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/eee22da9-3664-488a-8030-41df1cc765da?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -880,13 +880,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac355ee6-4549-4e35-8efa-7a4b89dd817f?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/eee22da9-3664-488a-8030-41df1cc765da?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac355ee6-4549-4e35-8efa-7a4b89dd817f","name":"ac355ee6-4549-4e35-8efa-7a4b89dd817f","status":"Succeeded","startTime":"2020-08-09T13:56:38.6096241Z","endTime":"2020-08-09T13:56:38.7189773Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/eee22da9-3664-488a-8030-41df1cc765da","name":"eee22da9-3664-488a-8030-41df1cc765da","status":"Succeeded","startTime":"2020-09-02T13:32:43.5574722Z","endTime":"2020-09-02T13:32:43.6667601Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -897,7 +897,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:57:10 GMT
+ - Wed, 02 Sep 2020 13:33:14 GMT
expires:
- '-1'
pragma:
@@ -929,12 +929,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -948,7 +948,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:57:12 GMT
+ - Wed, 02 Sep 2020 13:33:17 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml
index 48ac9fbd900c..0dd559dba906 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -9,34 +9,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '23'
+ - '22'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A57%3A22.2736723Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-10T08%3A32%3A51.5930522Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b228e75d-c595-446a-b0b1-449cd55ff525?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0d4a7f97-3351-492e-98f9-d0d6b3f72922?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '348'
+ - '346'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:57:23 GMT
+ - Thu, 10 Sep 2020 08:32:51 GMT
etag:
- - W/"datetime'2020-08-09T13%3A57%3A22.2736723Z'"
+ - W/"datetime'2020-09-10T08%3A32%3A51.5930522Z'"
expires:
- '-1'
pragma:
@@ -66,24 +66,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b228e75d-c595-446a-b0b1-449cd55ff525?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0d4a7f97-3351-492e-98f9-d0d6b3f72922?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b228e75d-c595-446a-b0b1-449cd55ff525","name":"b228e75d-c595-446a-b0b1-449cd55ff525","status":"Succeeded","startTime":"2020-08-09T13:57:22.1805269Z","endTime":"2020-08-09T13:57:22.3524028Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/0d4a7f97-3351-492e-98f9-d0d6b3f72922","name":"0d4a7f97-3351-492e-98f9-d0d6b3f72922","status":"Succeeded","startTime":"2020-09-10T08:32:51.5232611Z","endTime":"2020-09-10T08:32:51.6638804Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '511'
+ - '510'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:57:56 GMT
+ - Thu, 10 Sep 2020 08:33:22 GMT
expires:
- '-1'
pragma:
@@ -115,26 +115,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T13%3A57%3A22.3447246Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-10T08%3A32%3A51.6681239Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '348'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:57:56 GMT
+ - Thu, 10 Sep 2020 08:33:22 GMT
etag:
- - W/"datetime'2020-08-09T13%3A57%3A22.3447246Z'"
+ - W/"datetime'2020-09-10T08%3A32%3A51.6681239Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '107'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A57%3A59.512886Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-10T08%3A33%3A24.9750357Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac403455-b40f-4bf8-9026-023ddd60c66e?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2a890659-9ae3-4cd1-bf2c-ee277785be0b?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '460'
+ - '534'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:57:59 GMT
+ - Thu, 10 Sep 2020 08:33:25 GMT
etag:
- - W/"datetime'2020-08-09T13%3A57%3A59.512886Z'"
+ - W/"datetime'2020-09-10T08%3A33%3A24.9750357Z'"
expires:
- '-1'
pragma:
@@ -226,13 +226,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac403455-b40f-4bf8-9026-023ddd60c66e?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2a890659-9ae3-4cd1-bf2c-ee277785be0b?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ac403455-b40f-4bf8-9026-023ddd60c66e","name":"ac403455-b40f-4bf8-9026-023ddd60c66e","status":"Succeeded","startTime":"2020-08-09T13:57:59.479107Z","endTime":"2020-08-09T13:57:59.7760157Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/2a890659-9ae3-4cd1-bf2c-ee277785be0b","name":"2a890659-9ae3-4cd1-bf2c-ee277785be0b","status":"Succeeded","startTime":"2020-09-10T08:33:24.8203408Z","endTime":"2020-09-10T08:33:25.2578473Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -243,7 +243,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:58:32 GMT
+ - Thu, 10 Sep 2020 08:33:55 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A57%3A59.7740768Z''\"","location":"westus2","properties":{"poolId":"fc09c649-a97f-4402-2ad8-e2d3497e222a","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-10T08%3A33%3A25.2593083Z''\"","location":"westus2stage","properties":{"poolId":"e5b3a970-9365-ea6c-b0a5-780aad320593","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '587'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:58:32 GMT
+ - Thu, 10 Sep 2020 08:33:56 GMT
etag:
- - W/"datetime'2020-08-09T13%3A57%3A59.7740768Z'"
+ - W/"datetime'2020-09-10T08%3A33%3A25.2593083Z'"
expires:
- '-1'
pragma:
@@ -317,8 +317,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"tags": {"Tag2": "Value1"}, "properties": {"size": 4398046511104, "serviceLevel":
- "Standard"}}'
+ body: '{"tags": {"Tag2": "Value1"}, "properties": {"size": 4398046511104, "qosType":
+ "Manual"}}'
headers:
Accept:
- application/json
@@ -327,32 +327,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '95'
+ - '88'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T13%3A58%3A34.3643603Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"fc09c649-a97f-4402-2ad8-e2d3497e222a","serviceLevel":"Standard","size":4398046511104}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-10T08%3A33%3A57.8425259Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"e5b3a970-9365-ea6c-b0a5-780aad320593","serviceLevel":"Premium","size":4398046511104,"qosType":"Manual","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '536'
+ - '614'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:58:35 GMT
+ - Thu, 10 Sep 2020 08:33:58 GMT
etag:
- - W/"datetime'2020-08-09T13%3A58%3A34.3643603Z'"
+ - W/"datetime'2020-09-10T08%3A33%3A57.8425259Z'"
expires:
- '-1'
pragma:
@@ -388,12 +388,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -401,17 +401,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f072f3f6-61b3-4a0f-a885-f085a0f0adda?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a51a4793-de10-4a8a-a290-ca3f28ebfafa?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:58:36 GMT
+ - Thu, 10 Sep 2020 08:33:59 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f072f3f6-61b3-4a0f-a885-f085a0f0adda?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a51a4793-de10-4a8a-a290-ca3f28ebfafa?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -439,24 +439,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f072f3f6-61b3-4a0f-a885-f085a0f0adda?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a51a4793-de10-4a8a-a290-ca3f28ebfafa?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f072f3f6-61b3-4a0f-a885-f085a0f0adda","name":"f072f3f6-61b3-4a0f-a885-f085a0f0adda","status":"Succeeded","startTime":"2020-08-09T13:58:36.8565191Z","endTime":"2020-08-09T13:58:36.9971654Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a51a4793-de10-4a8a-a290-ca3f28ebfafa","name":"a51a4793-de10-4a8a-a290-ca3f28ebfafa","status":"Succeeded","startTime":"2020-09-10T08:33:59.8653172Z","endTime":"2020-09-10T08:34:00.3496991Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '544'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:59:09 GMT
+ - Thu, 10 Sep 2020 08:34:30 GMT
expires:
- '-1'
pragma:
@@ -488,12 +488,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -507,7 +507,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:59:19 GMT
+ - Thu, 10 Sep 2020 08:34:40 GMT
expires:
- '-1'
pragma:
@@ -533,12 +533,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -546,17 +546,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07f5489e-2d00-418b-9d6f-beb87de0c0f7?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e9016f3f-e879-49ea-8d2e-fe20e91c9a93?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 13:59:20 GMT
+ - Thu, 10 Sep 2020 08:34:40 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07f5489e-2d00-418b-9d6f-beb87de0c0f7?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e9016f3f-e879-49ea-8d2e-fe20e91c9a93?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -584,24 +584,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07f5489e-2d00-418b-9d6f-beb87de0c0f7?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e9016f3f-e879-49ea-8d2e-fe20e91c9a93?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07f5489e-2d00-418b-9d6f-beb87de0c0f7","name":"07f5489e-2d00-418b-9d6f-beb87de0c0f7","status":"Succeeded","startTime":"2020-08-09T13:59:20.7337589Z","endTime":"2020-08-09T13:59:20.8274766Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e9016f3f-e879-49ea-8d2e-fe20e91c9a93","name":"e9016f3f-e879-49ea-8d2e-fe20e91c9a93","status":"Succeeded","startTime":"2020-09-10T08:34:41.5008069Z","endTime":"2020-09-10T08:34:41.6570772Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '511'
+ - '510'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:59:52 GMT
+ - Thu, 10 Sep 2020 08:35:12 GMT
expires:
- '-1'
pragma:
@@ -633,12 +633,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -652,7 +652,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 13:59:55 GMT
+ - Thu, 10 Sep 2020 08:35:14 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml
index 52e700746ec8..005c90d54533 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,20 +13,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A00%3A04.4561971Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A37%3A45.2640049Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8534ad49-7771-4c70-af7b-8472bd650db7?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/40e4e9d2-ace6-401c-88c3-859ece1b2550?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -34,9 +34,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:00:05 GMT
+ - Wed, 02 Sep 2020 13:37:46 GMT
etag:
- - W/"datetime'2020-08-09T14%3A00%3A04.4561971Z'"
+ - W/"datetime'2020-09-02T13%3A37%3A45.2640049Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8534ad49-7771-4c70-af7b-8472bd650db7?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/40e4e9d2-ace6-401c-88c3-859ece1b2550?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8534ad49-7771-4c70-af7b-8472bd650db7","name":"8534ad49-7771-4c70-af7b-8472bd650db7","status":"Succeeded","startTime":"2020-08-09T14:00:04.3800036Z","endTime":"2020-08-09T14:00:04.5206159Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/40e4e9d2-ace6-401c-88c3-859ece1b2550","name":"40e4e9d2-ace6-401c-88c3-859ece1b2550","status":"Succeeded","startTime":"2020-09-02T13:37:45.1853294Z","endTime":"2020-09-02T13:37:45.3483333Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:00:37 GMT
+ - Wed, 02 Sep 2020 13:38:18 GMT
expires:
- '-1'
pragma:
@@ -115,26 +115,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A00%3A04.516241Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A37%3A45.3480641Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '347'
+ - '348'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:00:37 GMT
+ - Wed, 02 Sep 2020 13:38:19 GMT
etag:
- - W/"datetime'2020-08-09T14%3A00%3A04.516241Z'"
+ - W/"datetime'2020-09-02T13%3A37%3A45.3480641Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A00%3A40.7987551Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A38%3A21.2713789Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/187cff48-d402-4039-a81e-d3f0dd5e7539?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/289e0947-a59d-4144-8967-190fdf19293d?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:00:41 GMT
+ - Wed, 02 Sep 2020 13:38:21 GMT
etag:
- - W/"datetime'2020-08-09T14%3A00%3A40.7987551Z'"
+ - W/"datetime'2020-09-02T13%3A38%3A21.2713789Z'"
expires:
- '-1'
pragma:
@@ -226,24 +226,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/187cff48-d402-4039-a81e-d3f0dd5e7539?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/289e0947-a59d-4144-8967-190fdf19293d?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/187cff48-d402-4039-a81e-d3f0dd5e7539","name":"187cff48-d402-4039-a81e-d3f0dd5e7539","status":"Succeeded","startTime":"2020-08-09T14:00:40.7385839Z","endTime":"2020-08-09T14:00:40.9417132Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/289e0947-a59d-4144-8967-190fdf19293d","name":"289e0947-a59d-4144-8967-190fdf19293d","status":"Succeeded","startTime":"2020-09-02T13:38:21.1871234Z","endTime":"2020-09-02T13:38:21.468356Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '544'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:01:13 GMT
+ - Wed, 02 Sep 2020 13:38:53 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A00%3A40.9378568Z''\"","location":"westus2","properties":{"poolId":"13feeb92-ddf0-2287-582f-cd39fd8ad568","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A38%3A21.4615129Z''\"","location":"westus2stage","properties":{"poolId":"1e2c1297-c274-b31e-eaec-082cb8c64576","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:01:14 GMT
+ - Wed, 02 Sep 2020 13:38:53 GMT
etag:
- - W/"datetime'2020-08-09T14%3A00%3A40.9378568Z'"
+ - W/"datetime'2020-09-02T13%3A38%3A21.4615129Z'"
expires:
- '-1'
pragma:
@@ -317,8 +317,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Standard"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Standard", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -327,36 +327,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '90'
+ - '109'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A01%3A15.5831809Z''\"","location":"westus2","properties":{"provisioningState":"Updating","poolId":"13feeb92-ddf0-2287-582f-cd39fd8ad568","serviceLevel":"Premium","size":4398046511104}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A38%3A54.7119445Z''\"","location":"westus2stage","properties":{"provisioningState":"Updating","poolId":"1e2c1297-c274-b31e-eaec-082cb8c64576","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bd5339ba-1ba5-46bd-a62e-c531c8520876?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86ec25e7-6a45-45dc-9c10-277915526609?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '509'
+ - '583'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:01:15 GMT
+ - Wed, 02 Sep 2020 13:38:54 GMT
etag:
- - W/"datetime'2020-08-09T14%3A01%3A15.5831809Z'"
+ - W/"datetime'2020-09-02T13%3A38%3A54.7119445Z'"
expires:
- '-1'
pragma:
@@ -390,13 +390,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bd5339ba-1ba5-46bd-a62e-c531c8520876?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86ec25e7-6a45-45dc-9c10-277915526609?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bd5339ba-1ba5-46bd-a62e-c531c8520876","name":"bd5339ba-1ba5-46bd-a62e-c531c8520876","status":"Succeeded","startTime":"2020-08-09T14:01:15.5231211Z","endTime":"2020-08-09T14:01:15.8500953Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/86ec25e7-6a45-45dc-9c10-277915526609","name":"86ec25e7-6a45-45dc-9c10-277915526609","status":"Succeeded","startTime":"2020-09-02T13:38:54.6559451Z","endTime":"2020-09-02T13:38:54.8903182Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -407,7 +407,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:01:47 GMT
+ - Wed, 02 Sep 2020 13:39:25 GMT
expires:
- '-1'
pragma:
@@ -439,26 +439,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A01%3A15.8443731Z''\"","location":"westus2","properties":{"poolId":"13feeb92-ddf0-2287-582f-cd39fd8ad568","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A38%3A54.8850665Z''\"","location":"westus2stage","properties":{"poolId":"1e2c1297-c274-b31e-eaec-082cb8c64576","serviceLevel":"Standard","size":4398046511104,"qosType":"Auto","totalThroughputMibps":65.536,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '511'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:01:47 GMT
+ - Wed, 02 Sep 2020 13:39:26 GMT
etag:
- - W/"datetime'2020-08-09T14%3A01%3A15.8443731Z'"
+ - W/"datetime'2020-09-02T13%3A38%3A54.8850665Z'"
expires:
- '-1'
pragma:
@@ -492,12 +492,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -505,17 +505,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b371214-15a1-4004-ac8d-526f8d8d5d1b?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/57aefd83-90c1-4758-9bc7-30a7548e860f?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:01:49 GMT
+ - Wed, 02 Sep 2020 13:39:27 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b371214-15a1-4004-ac8d-526f8d8d5d1b?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/57aefd83-90c1-4758-9bc7-30a7548e860f?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -543,13 +543,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b371214-15a1-4004-ac8d-526f8d8d5d1b?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/57aefd83-90c1-4758-9bc7-30a7548e860f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b371214-15a1-4004-ac8d-526f8d8d5d1b","name":"0b371214-15a1-4004-ac8d-526f8d8d5d1b","status":"Succeeded","startTime":"2020-08-09T14:01:50.0222076Z","endTime":"2020-08-09T14:01:50.2878246Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/57aefd83-90c1-4758-9bc7-30a7548e860f","name":"57aefd83-90c1-4758-9bc7-30a7548e860f","status":"Succeeded","startTime":"2020-09-02T13:39:27.8085482Z","endTime":"2020-09-02T13:39:27.9804333Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -560,7 +560,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:02:21 GMT
+ - Wed, 02 Sep 2020 13:39:57 GMT
expires:
- '-1'
pragma:
@@ -592,12 +592,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -611,7 +611,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:02:32 GMT
+ - Wed, 02 Sep 2020 13:40:08 GMT
expires:
- '-1'
pragma:
@@ -637,12 +637,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -650,17 +650,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25fa9e34-c3c5-4fa7-a9f6-892fb23f20a3?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/753088d6-7e15-4700-98db-9dec6fac421c?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:02:33 GMT
+ - Wed, 02 Sep 2020 13:40:08 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25fa9e34-c3c5-4fa7-a9f6-892fb23f20a3?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/753088d6-7e15-4700-98db-9dec6fac421c?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -688,13 +688,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25fa9e34-c3c5-4fa7-a9f6-892fb23f20a3?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/753088d6-7e15-4700-98db-9dec6fac421c?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25fa9e34-c3c5-4fa7-a9f6-892fb23f20a3","name":"25fa9e34-c3c5-4fa7-a9f6-892fb23f20a3","status":"Succeeded","startTime":"2020-08-09T14:02:34.0263848Z","endTime":"2020-08-09T14:02:34.1513776Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/753088d6-7e15-4700-98db-9dec6fac421c","name":"753088d6-7e15-4700-98db-9dec6fac421c","status":"Succeeded","startTime":"2020-09-02T13:40:09.4285971Z","endTime":"2020-09-02T13:40:09.5223451Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -705,7 +705,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:03:05 GMT
+ - Wed, 02 Sep 2020 13:40:41 GMT
expires:
- '-1'
pragma:
@@ -737,12 +737,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -756,7 +756,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:03:08 GMT
+ - Wed, 02 Sep 2020 13:40:42 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml
index 070a657ee2fe..b804105deb78 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,30 +13,30 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A04%3A55.383721Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A46%3A18.1807635Z''\"","location":"westus2stage","properties":{"provisioningState":"Updating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/942f9325-d06b-418c-96e7-dad242700e74?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8c36b64e-c036-4cae-a0ef-4e63c60ca111?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '346'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:04:56 GMT
+ - Wed, 02 Sep 2020 13:46:17 GMT
etag:
- - W/"datetime'2020-08-09T14%3A04%3A55.383721Z'"
+ - W/"datetime'2020-09-02T13%3A46%3A18.1807635Z'"
expires:
- '-1'
pragma:
@@ -47,6 +47,10 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
@@ -54,8 +58,8 @@ interactions:
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -66,13 +70,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/942f9325-d06b-418c-96e7-dad242700e74?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8c36b64e-c036-4cae-a0ef-4e63c60ca111?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/942f9325-d06b-418c-96e7-dad242700e74","name":"942f9325-d06b-418c-96e7-dad242700e74","status":"Succeeded","startTime":"2020-08-09T14:04:55.3136276Z","endTime":"2020-08-09T14:04:55.4542628Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8c36b64e-c036-4cae-a0ef-4e63c60ca111","name":"8c36b64e-c036-4cae-a0ef-4e63c60ca111","status":"Succeeded","startTime":"2020-09-02T13:46:18.0741575Z","endTime":"2020-09-02T13:46:18.2481049Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +87,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:05:28 GMT
+ - Wed, 02 Sep 2020 13:46:49 GMT
expires:
- '-1'
pragma:
@@ -115,13 +119,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A04%3A55.4557732Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A46%3A18.2428076Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +136,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:05:28 GMT
+ - Wed, 02 Sep 2020 13:46:49 GMT
etag:
- - W/"datetime'2020-08-09T14%3A04%3A55.4557732Z'"
+ - W/"datetime'2020-09-02T13%3A46%3A18.2428076Z'"
expires:
- '-1'
pragma:
@@ -157,8 +161,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +171,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A05%3A31.4770713Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A46%3A51.7204175Z''\"","location":"westus2stage","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Updating","poolId":"15d25893-e439-0b4b-79f9-662c38a9c11a","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9990df4c-6481-45c1-b5e2-b67cf9d6f5c8?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f07f3b3-3acd-42d5-b4c7-5a982030b996?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '608'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:05:32 GMT
+ - Wed, 02 Sep 2020 13:46:55 GMT
etag:
- - W/"datetime'2020-08-09T14%3A05%3A31.4770713Z'"
+ - W/"datetime'2020-09-02T13%3A46%3A51.7204175Z'"
expires:
- '-1'
pragma:
@@ -207,6 +211,10 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
@@ -214,8 +222,8 @@ interactions:
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -226,24 +234,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9990df4c-6481-45c1-b5e2-b67cf9d6f5c8?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f07f3b3-3acd-42d5-b4c7-5a982030b996?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9990df4c-6481-45c1-b5e2-b67cf9d6f5c8","name":"9990df4c-6481-45c1-b5e2-b67cf9d6f5c8","status":"Succeeded","startTime":"2020-08-09T14:05:31.4213772Z","endTime":"2020-08-09T14:05:31.671359Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/5f07f3b3-3acd-42d5-b4c7-5a982030b996","name":"5f07f3b3-3acd-42d5-b4c7-5a982030b996","status":"Succeeded","startTime":"2020-09-02T13:46:51.6452112Z","endTime":"2020-09-02T13:46:51.8795239Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '544'
+ - '545'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:06:03 GMT
+ - Wed, 02 Sep 2020 13:47:26 GMT
expires:
- '-1'
pragma:
@@ -275,26 +283,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A05%3A31.666209Z''\"","location":"westus2","properties":{"poolId":"54c3c749-ec93-99bd-8663-5b57f2a93405","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A46%3A51.8725251Z''\"","location":"westus2stage","properties":{"poolId":"15d25893-e439-0b4b-79f9-662c38a9c11a","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '509'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:06:04 GMT
+ - Wed, 02 Sep 2020 13:47:26 GMT
etag:
- - W/"datetime'2020-08-09T14%3A05%3A31.666209Z'"
+ - W/"datetime'2020-09-02T13%3A46%3A51.8725251Z'"
expires:
- '-1'
pragma:
@@ -317,9 +325,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +337,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '371'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A06%3A08.6562407Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A47%3A29.8863131Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '765'
+ - '789'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:06:09 GMT
+ - Wed, 02 Sep 2020 13:47:30 GMT
etag:
- - W/"datetime'2020-08-09T14%3A06%3A08.6562407Z'"
+ - W/"datetime'2020-09-02T13%3A47%3A29.8863131Z'"
expires:
- '-1'
pragma:
@@ -385,13 +394,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51","name":"53bfb063-70c9-45aa-a95a-8cdde61c4e51","status":"Creating","startTime":"2020-08-09T14:06:08.5965779Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","name":"48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","status":"Creating","startTime":"2020-09-02T13:47:29.8194766Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -402,7 +411,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:06:40 GMT
+ - Wed, 02 Sep 2020 13:48:01 GMT
expires:
- '-1'
pragma:
@@ -434,13 +443,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51","name":"53bfb063-70c9-45aa-a95a-8cdde61c4e51","status":"Creating","startTime":"2020-08-09T14:06:08.5965779Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","name":"48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","status":"Creating","startTime":"2020-09-02T13:47:29.8194766Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -451,7 +460,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:07:11 GMT
+ - Wed, 02 Sep 2020 13:48:32 GMT
expires:
- '-1'
pragma:
@@ -483,13 +492,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51","name":"53bfb063-70c9-45aa-a95a-8cdde61c4e51","status":"Creating","startTime":"2020-08-09T14:06:08.5965779Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","name":"48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","status":"Creating","startTime":"2020-09-02T13:47:29.8194766Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -500,7 +509,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:07:42 GMT
+ - Wed, 02 Sep 2020 13:49:03 GMT
expires:
- '-1'
pragma:
@@ -532,13 +541,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51","name":"53bfb063-70c9-45aa-a95a-8cdde61c4e51","status":"Creating","startTime":"2020-08-09T14:06:08.5965779Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","name":"48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","status":"Creating","startTime":"2020-09-02T13:47:29.8194766Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -549,7 +558,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:08:12 GMT
+ - Wed, 02 Sep 2020 13:49:33 GMT
expires:
- '-1'
pragma:
@@ -581,13 +590,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51","name":"53bfb063-70c9-45aa-a95a-8cdde61c4e51","status":"Creating","startTime":"2020-08-09T14:06:08.5965779Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","name":"48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","status":"Creating","startTime":"2020-09-02T13:47:29.8194766Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -598,7 +607,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:08:43 GMT
+ - Wed, 02 Sep 2020 13:50:03 GMT
expires:
- '-1'
pragma:
@@ -630,13 +639,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51","name":"53bfb063-70c9-45aa-a95a-8cdde61c4e51","status":"Creating","startTime":"2020-08-09T14:06:08.5965779Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","name":"48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","status":"Creating","startTime":"2020-09-02T13:47:29.8194766Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -647,7 +656,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:09:13 GMT
+ - Wed, 02 Sep 2020 13:50:33 GMT
expires:
- '-1'
pragma:
@@ -679,13 +688,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/53bfb063-70c9-45aa-a95a-8cdde61c4e51","name":"53bfb063-70c9-45aa-a95a-8cdde61c4e51","status":"Succeeded","startTime":"2020-08-09T14:06:08.5965779Z","endTime":"2020-08-09T14:09:39.6039783Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","name":"48ad9bf8-f8ed-4825-aed7-f13a2aa4d169","status":"Succeeded","startTime":"2020-09-02T13:47:29.8194766Z","endTime":"2020-09-02T13:50:45.9941995Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -696,7 +705,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:09:44 GMT
+ - Wed, 02 Sep 2020 13:51:03 GMT
expires:
- '-1'
pragma:
@@ -728,26 +737,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A09%3A39.6063965Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"84478473-9f0e-506c-e6b1-8f6a304f03a1","fileSystemId":"84478473-9f0e-506c-e6b1-8f6a304f03a1","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"84478473-9f0e-506c-e6b1-8f6a304f03a1","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5e0a7c62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A50%3A45.9985139Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"59d415d7-d532-bbc3-81a1-54b630a8c139","fileSystemId":"59d415d7-d532-bbc3-81a1-54b630a8c139","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"59d415d7-d532-bbc3-81a1-54b630a8c139","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ca262ca5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:09:45 GMT
+ - Wed, 02 Sep 2020 13:51:04 GMT
etag:
- - W/"datetime'2020-08-09T14%3A09%3A39.6063965Z'"
+ - W/"datetime'2020-09-02T13%3A50%3A45.9985139Z'"
expires:
- '-1'
pragma:
@@ -779,28 +788,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A09%3A39.6063965Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"84478473-9f0e-506c-e6b1-8f6a304f03a1","fileSystemId":"84478473-9f0e-506c-e6b1-8f6a304f03a1","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"84478473-9f0e-506c-e6b1-8f6a304f03a1","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_5e0a7c62","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A50%3A45.9985139Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"59d415d7-d532-bbc3-81a1-54b630a8c139","fileSystemId":"59d415d7-d532-bbc3-81a1-54b630a8c139","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"59d415d7-d532-bbc3-81a1-54b630a8c139","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ca262ca5","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:09:47 GMT
+ - Wed, 02 Sep 2020 13:51:05 GMT
etag:
- - W/"datetime'2020-08-09T14%3A09%3A39.6063965Z'"
+ - W/"datetime'2020-09-02T13%3A50%3A45.9985139Z'"
expires:
- '-1'
pragma:
@@ -823,7 +832,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -836,20 +845,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"84478473-9f0e-506c-e6b1-8f6a304f03a1","name":"sdk-py-tests-snapshot-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"59d415d7-d532-bbc3-81a1-54b630a8c139","name":"sdk-py-tests-snapshot-1"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d71e982d-36f2-437b-bcfc-7487a90e8b03?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcff00ec-3928-4f38-a27b-073f9f702853?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -857,11 +866,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:09:49 GMT
+ - Wed, 02 Sep 2020 13:51:06 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d71e982d-36f2-437b-bcfc-7487a90e8b03?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcff00ec-3928-4f38-a27b-073f9f702853?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -873,7 +882,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -889,13 +898,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d71e982d-36f2-437b-bcfc-7487a90e8b03?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcff00ec-3928-4f38-a27b-073f9f702853?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d71e982d-36f2-437b-bcfc-7487a90e8b03","name":"d71e982d-36f2-437b-bcfc-7487a90e8b03","status":"Succeeded","startTime":"2020-08-09T14:09:49.4550494Z","endTime":"2020-08-09T14:09:51.3929362Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dcff00ec-3928-4f38-a27b-073f9f702853","name":"dcff00ec-3928-4f38-a27b-073f9f702853","status":"Succeeded","startTime":"2020-09-02T13:51:06.8638528Z","endTime":"2020-09-02T13:51:09.1194996Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -906,7 +915,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:10:21 GMT
+ - Wed, 02 Sep 2020 13:51:38 GMT
expires:
- '-1'
pragma:
@@ -938,13 +947,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e800397d-e60c-fb92-06ba-19b55ee42954","name":"sdk-py-tests-snapshot-1","created":"2020-08-09T14:09:49Z"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"9a3ebd0b-9ec7-e9b2-50ac-6a9662303a97","name":"sdk-py-tests-snapshot-1","created":"2020-09-02T13:51:07Z"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -955,7 +964,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:10:22 GMT
+ - Wed, 02 Sep 2020 13:51:38 GMT
expires:
- '-1'
pragma:
@@ -987,15 +996,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"e800397d-e60c-fb92-06ba-19b55ee42954","fileSystemId":"84478473-9f0e-506c-e6b1-8f6a304f03a1","name":"sdk-py-tests-snapshot-1","created":"2020-08-09T14:09:49Z"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"9a3ebd0b-9ec7-e9b2-50ac-6a9662303a97","fileSystemId":"59d415d7-d532-bbc3-81a1-54b630a8c139","name":"sdk-py-tests-snapshot-1","created":"2020-09-02T13:51:07Z"}}]}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1006,7 +1015,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:10:22 GMT
+ - Wed, 02 Sep 2020 13:51:38 GMT
expires:
- '-1'
pragma:
@@ -1040,12 +1049,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
string: ''
@@ -1053,17 +1062,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/885a9fae-2279-4353-b5a5-7a3c7045e17e?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/068decb0-1623-4cea-93ad-700a0312bf3d?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:10:23 GMT
+ - Wed, 02 Sep 2020 13:51:38 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/885a9fae-2279-4353-b5a5-7a3c7045e17e?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/068decb0-1623-4cea-93ad-700a0312bf3d?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1075,7 +1084,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14997'
+ - '14998'
x-powered-by:
- ASP.NET
status:
@@ -1091,13 +1100,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/885a9fae-2279-4353-b5a5-7a3c7045e17e?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/068decb0-1623-4cea-93ad-700a0312bf3d?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/885a9fae-2279-4353-b5a5-7a3c7045e17e","name":"885a9fae-2279-4353-b5a5-7a3c7045e17e","status":"Succeeded","startTime":"2020-08-09T14:10:23.6024786Z","endTime":"2020-08-09T14:10:25.9110127Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/068decb0-1623-4cea-93ad-700a0312bf3d","name":"068decb0-1623-4cea-93ad-700a0312bf3d","status":"Succeeded","startTime":"2020-09-02T13:51:39.5152713Z","endTime":"2020-09-02T13:51:42.0884536Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1108,7 +1117,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:10:54 GMT
+ - Wed, 02 Sep 2020 13:52:09 GMT
expires:
- '-1'
pragma:
@@ -1140,12 +1149,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2020-06-01
response:
body:
string: '{"value":[]}'
@@ -1159,7 +1168,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:10:55 GMT
+ - Wed, 02 Sep 2020 13:52:10 GMT
expires:
- '-1'
pragma:
@@ -1193,12 +1202,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1206,17 +1215,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/202425f7-0454-419f-b152-6ce8ea69c8a6?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fd8a5ae2-3a76-420a-8ab3-ac9e56575c05?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:10:57 GMT
+ - Wed, 02 Sep 2020 13:52:11 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/202425f7-0454-419f-b152-6ce8ea69c8a6?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fd8a5ae2-3a76-420a-8ab3-ac9e56575c05?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1228,7 +1237,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14996'
+ - '14997'
x-powered-by:
- ASP.NET
status:
@@ -1244,13 +1253,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/202425f7-0454-419f-b152-6ce8ea69c8a6?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fd8a5ae2-3a76-420a-8ab3-ac9e56575c05?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/202425f7-0454-419f-b152-6ce8ea69c8a6","name":"202425f7-0454-419f-b152-6ce8ea69c8a6","status":"Deleting","startTime":"2020-08-09T14:10:57.8370097Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fd8a5ae2-3a76-420a-8ab3-ac9e56575c05","name":"fd8a5ae2-3a76-420a-8ab3-ac9e56575c05","status":"Deleting","startTime":"2020-09-02T13:52:11.6370945Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1261,7 +1270,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:11:29 GMT
+ - Wed, 02 Sep 2020 13:52:43 GMT
expires:
- '-1'
pragma:
@@ -1293,13 +1302,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/202425f7-0454-419f-b152-6ce8ea69c8a6?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fd8a5ae2-3a76-420a-8ab3-ac9e56575c05?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/202425f7-0454-419f-b152-6ce8ea69c8a6","name":"202425f7-0454-419f-b152-6ce8ea69c8a6","status":"Deleting","startTime":"2020-08-09T14:10:57.8370097Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fd8a5ae2-3a76-420a-8ab3-ac9e56575c05","name":"fd8a5ae2-3a76-420a-8ab3-ac9e56575c05","status":"Deleting","startTime":"2020-09-02T13:52:11.6370945Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1310,7 +1319,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:12:00 GMT
+ - Wed, 02 Sep 2020 13:53:13 GMT
expires:
- '-1'
pragma:
@@ -1342,13 +1351,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/202425f7-0454-419f-b152-6ce8ea69c8a6?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fd8a5ae2-3a76-420a-8ab3-ac9e56575c05?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/202425f7-0454-419f-b152-6ce8ea69c8a6","name":"202425f7-0454-419f-b152-6ce8ea69c8a6","status":"Succeeded","startTime":"2020-08-09T14:10:57.8370097Z","endTime":"2020-08-09T14:12:03.8324207Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/fd8a5ae2-3a76-420a-8ab3-ac9e56575c05","name":"fd8a5ae2-3a76-420a-8ab3-ac9e56575c05","status":"Succeeded","startTime":"2020-09-02T13:52:11.6370945Z","endTime":"2020-09-02T13:53:17.2367756Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1359,7 +1368,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:12:30 GMT
+ - Wed, 02 Sep 2020 13:53:43 GMT
expires:
- '-1'
pragma:
@@ -1391,12 +1400,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -1410,7 +1419,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:12:31 GMT
+ - Wed, 02 Sep 2020 13:53:43 GMT
expires:
- '-1'
pragma:
@@ -1436,12 +1445,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1449,17 +1458,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be7c271-d619-4445-9822-2f78eb66dc5a?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aaeeb48d-b5aa-45dd-8571-2744c0f69f9a?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:12:33 GMT
+ - Wed, 02 Sep 2020 13:53:45 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be7c271-d619-4445-9822-2f78eb66dc5a?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aaeeb48d-b5aa-45dd-8571-2744c0f69f9a?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1471,7 +1480,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14995'
+ - '14996'
x-powered-by:
- ASP.NET
status:
@@ -1487,13 +1496,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be7c271-d619-4445-9822-2f78eb66dc5a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aaeeb48d-b5aa-45dd-8571-2744c0f69f9a?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3be7c271-d619-4445-9822-2f78eb66dc5a","name":"3be7c271-d619-4445-9822-2f78eb66dc5a","status":"Succeeded","startTime":"2020-08-09T14:12:33.6308329Z","endTime":"2020-08-09T14:12:33.9120909Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/aaeeb48d-b5aa-45dd-8571-2744c0f69f9a","name":"aaeeb48d-b5aa-45dd-8571-2744c0f69f9a","status":"Succeeded","startTime":"2020-09-02T13:53:45.6194613Z","endTime":"2020-09-02T13:53:45.8069066Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1504,7 +1513,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:13:05 GMT
+ - Wed, 02 Sep 2020 13:54:16 GMT
expires:
- '-1'
pragma:
@@ -1538,12 +1547,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1551,7 +1560,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:13:06 GMT
+ - Wed, 02 Sep 2020 13:54:17 GMT
expires:
- '-1'
pragma:
@@ -1561,7 +1570,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14994'
+ - '14995'
status:
code: 204
message: No Content
@@ -1577,12 +1586,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1590,7 +1599,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:13:07 GMT
+ - Wed, 02 Sep 2020 13:54:17 GMT
expires:
- '-1'
pragma:
@@ -1600,7 +1609,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14993'
+ - '14994'
status:
code: 204
message: No Content
@@ -1616,12 +1625,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1629,7 +1638,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:13:07 GMT
+ - Wed, 02 Sep 2020 13:54:17 GMT
expires:
- '-1'
pragma:
@@ -1639,7 +1648,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14992'
+ - '14993'
status:
code: 204
message: No Content
@@ -1655,12 +1664,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1668,7 +1677,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:13:08 GMT
+ - Wed, 02 Sep 2020 13:54:18 GMT
expires:
- '-1'
pragma:
@@ -1678,7 +1687,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14991'
+ - '14992'
status:
code: 204
message: No Content
@@ -1692,12 +1701,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -1711,7 +1720,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:13:09 GMT
+ - Wed, 02 Sep 2020 13:54:18 GMT
expires:
- '-1'
pragma:
@@ -1737,12 +1746,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1750,17 +1759,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2f455b4-581a-4b1e-a7f5-cc8f019f4b81?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8753542e-d11b-4fb5-a2d1-49f1229fbb11?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:13:10 GMT
+ - Wed, 02 Sep 2020 13:54:19 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2f455b4-581a-4b1e-a7f5-cc8f019f4b81?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8753542e-d11b-4fb5-a2d1-49f1229fbb11?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1772,7 +1781,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14990'
+ - '14991'
x-powered-by:
- ASP.NET
status:
@@ -1788,24 +1797,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2f455b4-581a-4b1e-a7f5-cc8f019f4b81?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8753542e-d11b-4fb5-a2d1-49f1229fbb11?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2f455b4-581a-4b1e-a7f5-cc8f019f4b81","name":"c2f455b4-581a-4b1e-a7f5-cc8f019f4b81","status":"Succeeded","startTime":"2020-08-09T14:13:10.3465308Z","endTime":"2020-08-09T14:13:10.518341Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8753542e-d11b-4fb5-a2d1-49f1229fbb11","name":"8753542e-d11b-4fb5-a2d1-49f1229fbb11","status":"Succeeded","startTime":"2020-09-02T13:54:18.9841446Z","endTime":"2020-09-02T13:54:19.1090878Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '511'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:13:42 GMT
+ - Wed, 02 Sep 2020 13:54:50 GMT
expires:
- '-1'
pragma:
@@ -1837,12 +1846,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -1856,7 +1865,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:13:42 GMT
+ - Wed, 02 Sep 2020 13:54:50 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml
index 089f462f7c9d..a83e987f535b 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,30 +13,30 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A13%3A50.8259737Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T14%3A07%3A16.4288971Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42b8cc95-4cb0-4c07-a221-080b681cae5b?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/701d05a3-e610-484f-b75c-0cb9aa7a3c4d?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '348'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:13:51 GMT
+ - Wed, 02 Sep 2020 14:07:17 GMT
etag:
- - W/"datetime'2020-08-09T14%3A13%3A50.8259737Z'"
+ - W/"datetime'2020-09-02T14%3A07%3A16.4288971Z'"
expires:
- '-1'
pragma:
@@ -50,7 +50,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42b8cc95-4cb0-4c07-a221-080b681cae5b?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/701d05a3-e610-484f-b75c-0cb9aa7a3c4d?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/42b8cc95-4cb0-4c07-a221-080b681cae5b","name":"42b8cc95-4cb0-4c07-a221-080b681cae5b","status":"Succeeded","startTime":"2020-08-09T14:13:50.7163111Z","endTime":"2020-08-09T14:13:50.8881901Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/701d05a3-e610-484f-b75c-0cb9aa7a3c4d","name":"701d05a3-e610-484f-b75c-0cb9aa7a3c4d","status":"Succeeded","startTime":"2020-09-02T14:07:16.3576911Z","endTime":"2020-09-02T14:07:16.5139292Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:14:23 GMT
+ - Wed, 02 Sep 2020 14:07:48 GMT
expires:
- '-1'
pragma:
@@ -115,26 +115,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A13%3A50.888019Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T14%3A07%3A16.5079532Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '347'
+ - '348'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:14:23 GMT
+ - Wed, 02 Sep 2020 14:07:49 GMT
etag:
- - W/"datetime'2020-08-09T14%3A13%3A50.888019Z'"
+ - W/"datetime'2020-09-02T14%3A07%3A16.5079532Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A14%3A27.3535835Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A07%3A51.9649402Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb66a34e-6f6f-4315-b882-29286ac5f00c?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a41a31fe-26f7-4a34-81e1-8cb0a29036c3?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:14:27 GMT
+ - Wed, 02 Sep 2020 14:07:52 GMT
etag:
- - W/"datetime'2020-08-09T14%3A14%3A27.3535835Z'"
+ - W/"datetime'2020-09-02T14%3A07%3A51.9649402Z'"
expires:
- '-1'
pragma:
@@ -210,7 +210,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -226,24 +226,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb66a34e-6f6f-4315-b882-29286ac5f00c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a41a31fe-26f7-4a34-81e1-8cb0a29036c3?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb66a34e-6f6f-4315-b882-29286ac5f00c","name":"bb66a34e-6f6f-4315-b882-29286ac5f00c","status":"Succeeded","startTime":"2020-08-09T14:14:27.2980324Z","endTime":"2020-08-09T14:14:27.5792528Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a41a31fe-26f7-4a34-81e1-8cb0a29036c3","name":"a41a31fe-26f7-4a34-81e1-8cb0a29036c3","status":"Succeeded","startTime":"2020-09-02T14:07:51.902599Z","endTime":"2020-09-02T14:07:52.1838418Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '544'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:14:59 GMT
+ - Wed, 02 Sep 2020 14:08:23 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A14%3A27.5667393Z''\"","location":"westus2","properties":{"poolId":"24599a6b-9040-3283-d29f-ba2f450cb12a","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A07%3A52.1760886Z''\"","location":"westus2stage","properties":{"poolId":"16327611-fc08-d887-15dd-a9a359e52f64","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:15:00 GMT
+ - Wed, 02 Sep 2020 14:08:23 GMT
etag:
- - W/"datetime'2020-08-09T14%3A14%3A27.5667393Z'"
+ - W/"datetime'2020-09-02T14%3A07%3A52.1760886Z'"
expires:
- '-1'
pragma:
@@ -317,9 +317,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +329,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '371'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A15%3A04.3065876Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A08%3A27.7891851Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '765'
+ - '789'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:15:05 GMT
+ - Wed, 02 Sep 2020 14:08:28 GMT
etag:
- - W/"datetime'2020-08-09T14%3A15%3A04.3065876Z'"
+ - W/"datetime'2020-09-02T14%3A08%3A27.7891851Z'"
expires:
- '-1'
pragma:
@@ -369,7 +370,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1197'
x-powered-by:
- ASP.NET
status:
@@ -385,73 +386,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb","name":"2289035b-af5a-481a-ba69-ed860847baeb","status":"Creating","startTime":"2020-08-09T14:15:04.253056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4","name":"ef166d92-bbc5-4218-a4ec-3784fa4eaac4","status":"Creating","startTime":"2020-09-02T14:08:27.7021435Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '560'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 14:15:36 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb","name":"2289035b-af5a-481a-ba69-ed860847baeb","status":"Creating","startTime":"2020-08-09T14:15:04.253056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '560'
+ - '561'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:16:08 GMT
+ - Wed, 02 Sep 2020 14:08:59 GMT
expires:
- '-1'
pragma:
@@ -483,24 +435,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb","name":"2289035b-af5a-481a-ba69-ed860847baeb","status":"Creating","startTime":"2020-08-09T14:15:04.253056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4","name":"ef166d92-bbc5-4218-a4ec-3784fa4eaac4","status":"Creating","startTime":"2020-09-02T14:08:27.7021435Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '560'
+ - '561'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:16:38 GMT
+ - Wed, 02 Sep 2020 14:09:29 GMT
expires:
- '-1'
pragma:
@@ -532,24 +484,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb","name":"2289035b-af5a-481a-ba69-ed860847baeb","status":"Creating","startTime":"2020-08-09T14:15:04.253056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4","name":"ef166d92-bbc5-4218-a4ec-3784fa4eaac4","status":"Creating","startTime":"2020-09-02T14:08:27.7021435Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '560'
+ - '561'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:17:09 GMT
+ - Wed, 02 Sep 2020 14:09:59 GMT
expires:
- '-1'
pragma:
@@ -581,24 +533,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb","name":"2289035b-af5a-481a-ba69-ed860847baeb","status":"Creating","startTime":"2020-08-09T14:15:04.253056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4","name":"ef166d92-bbc5-4218-a4ec-3784fa4eaac4","status":"Creating","startTime":"2020-09-02T14:08:27.7021435Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '560'
+ - '561'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:17:39 GMT
+ - Wed, 02 Sep 2020 14:10:30 GMT
expires:
- '-1'
pragma:
@@ -630,24 +582,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb","name":"2289035b-af5a-481a-ba69-ed860847baeb","status":"Creating","startTime":"2020-08-09T14:15:04.253056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4","name":"ef166d92-bbc5-4218-a4ec-3784fa4eaac4","status":"Creating","startTime":"2020-09-02T14:08:27.7021435Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '560'
+ - '561'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:18:10 GMT
+ - Wed, 02 Sep 2020 14:11:01 GMT
expires:
- '-1'
pragma:
@@ -679,24 +631,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb","name":"2289035b-af5a-481a-ba69-ed860847baeb","status":"Creating","startTime":"2020-08-09T14:15:04.253056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4","name":"ef166d92-bbc5-4218-a4ec-3784fa4eaac4","status":"Creating","startTime":"2020-09-02T14:08:27.7021435Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '560'
+ - '561'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:18:40 GMT
+ - Wed, 02 Sep 2020 14:11:31 GMT
expires:
- '-1'
pragma:
@@ -728,24 +680,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2289035b-af5a-481a-ba69-ed860847baeb","name":"2289035b-af5a-481a-ba69-ed860847baeb","status":"Succeeded","startTime":"2020-08-09T14:15:04.253056Z","endTime":"2020-08-09T14:18:41.6159316Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ef166d92-bbc5-4218-a4ec-3784fa4eaac4","name":"ef166d92-bbc5-4218-a4ec-3784fa4eaac4","status":"Succeeded","startTime":"2020-09-02T14:08:27.7021435Z","endTime":"2020-09-02T14:11:47.3154517Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '571'
+ - '572'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:19:11 GMT
+ - Wed, 02 Sep 2020 14:12:01 GMT
expires:
- '-1'
pragma:
@@ -777,26 +729,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A18%3A41.607378Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"768faa25-8629-6f6e-5bf0-448871122448","fileSystemId":"768faa25-8629-6f6e-5bf0-448871122448","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"768faa25-8629-6f6e-5bf0-448871122448","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f1c036cc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A11%3A47.3067854Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"9c2829fc-565c-cf7a-274f-9ffece6257bb","fileSystemId":"9c2829fc-565c-cf7a-274f-9ffece6257bb","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"9c2829fc-565c-cf7a-274f-9ffece6257bb","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_b09418f8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1382'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:19:11 GMT
+ - Wed, 02 Sep 2020 14:12:01 GMT
etag:
- - W/"datetime'2020-08-09T14%3A18%3A41.607378Z'"
+ - W/"datetime'2020-09-02T14%3A11%3A47.3067854Z'"
expires:
- '-1'
pragma:
@@ -828,28 +780,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A18%3A41.607378Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"768faa25-8629-6f6e-5bf0-448871122448","fileSystemId":"768faa25-8629-6f6e-5bf0-448871122448","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"768faa25-8629-6f6e-5bf0-448871122448","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_f1c036cc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A11%3A47.3067854Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"9c2829fc-565c-cf7a-274f-9ffece6257bb","fileSystemId":"9c2829fc-565c-cf7a-274f-9ffece6257bb","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"9c2829fc-565c-cf7a-274f-9ffece6257bb","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_b09418f8","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1382'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:19:14 GMT
+ - Wed, 02 Sep 2020 14:12:03 GMT
etag:
- - W/"datetime'2020-08-09T14%3A18%3A41.607378Z'"
+ - W/"datetime'2020-09-02T14%3A11%3A47.3067854Z'"
expires:
- '-1'
pragma:
@@ -872,7 +824,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -885,20 +837,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"768faa25-8629-6f6e-5bf0-448871122448","name":"sdk-py-tests-snapshot-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"9c2829fc-565c-cf7a-274f-9ffece6257bb","name":"sdk-py-tests-snapshot-1"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b29ab4b2-d258-4b97-8043-e09c7494fba1?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1c73a6cc-6ecb-453d-9f4e-b8166f539b1a?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -906,11 +858,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:19:16 GMT
+ - Wed, 02 Sep 2020 14:12:04 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b29ab4b2-d258-4b97-8043-e09c7494fba1?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1c73a6cc-6ecb-453d-9f4e-b8166f539b1a?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -938,13 +890,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b29ab4b2-d258-4b97-8043-e09c7494fba1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1c73a6cc-6ecb-453d-9f4e-b8166f539b1a?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b29ab4b2-d258-4b97-8043-e09c7494fba1","name":"b29ab4b2-d258-4b97-8043-e09c7494fba1","status":"Succeeded","startTime":"2020-08-09T14:19:16.0349283Z","endTime":"2020-08-09T14:19:18.4571092Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1c73a6cc-6ecb-453d-9f4e-b8166f539b1a","name":"1c73a6cc-6ecb-453d-9f4e-b8166f539b1a","status":"Succeeded","startTime":"2020-09-02T14:12:04.5250934Z","endTime":"2020-09-02T14:12:06.6658616Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -955,7 +907,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:19:48 GMT
+ - Wed, 02 Sep 2020 14:12:35 GMT
expires:
- '-1'
pragma:
@@ -987,13 +939,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"ee69d446-ec72-86bf-0a0d-9d54ea12c154","name":"sdk-py-tests-snapshot-1","created":"2020-08-09T14:19:16Z"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"93e9e8c9-a130-07ac-e2ef-6fde12686e25","name":"sdk-py-tests-snapshot-1","created":"2020-09-02T14:12:04Z"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1004,7 +956,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:19:48 GMT
+ - Wed, 02 Sep 2020 14:12:36 GMT
expires:
- '-1'
pragma:
@@ -1036,15 +988,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"ee69d446-ec72-86bf-0a0d-9d54ea12c154","name":"sdk-py-tests-snapshot-1","created":"2020-08-09T14:19:16Z"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"93e9e8c9-a130-07ac-e2ef-6fde12686e25","name":"sdk-py-tests-snapshot-1","created":"2020-09-02T14:12:04Z"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1055,7 +1007,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:19:48 GMT
+ - Wed, 02 Sep 2020 14:12:36 GMT
expires:
- '-1'
pragma:
@@ -1089,12 +1041,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
string: ''
@@ -1102,17 +1054,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/decd5258-8fb5-4fcb-a443-c668495b404c?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/912fc60b-0393-445c-ac14-72aa43784607?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:19:50 GMT
+ - Wed, 02 Sep 2020 14:12:36 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/decd5258-8fb5-4fcb-a443-c668495b404c?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/912fc60b-0393-445c-ac14-72aa43784607?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1140,13 +1092,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/decd5258-8fb5-4fcb-a443-c668495b404c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/912fc60b-0393-445c-ac14-72aa43784607?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/decd5258-8fb5-4fcb-a443-c668495b404c","name":"decd5258-8fb5-4fcb-a443-c668495b404c","status":"Succeeded","startTime":"2020-08-09T14:19:50.5078233Z","endTime":"2020-08-09T14:19:52.7913349Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/912fc60b-0393-445c-ac14-72aa43784607","name":"912fc60b-0393-445c-ac14-72aa43784607","status":"Succeeded","startTime":"2020-09-02T14:12:37.2106742Z","endTime":"2020-09-02T14:12:40.1345593Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1157,7 +1109,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:20:22 GMT
+ - Wed, 02 Sep 2020 14:13:08 GMT
expires:
- '-1'
pragma:
@@ -1191,12 +1143,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1204,17 +1156,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35194943-b6e0-4264-84de-573880712139?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:20:24 GMT
+ - Wed, 02 Sep 2020 14:13:09 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35194943-b6e0-4264-84de-573880712139?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1242,13 +1194,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35194943-b6e0-4264-84de-573880712139?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d","name":"8b7c7f88-8e67-4c38-8526-918d2b0c224d","status":"Deleting","startTime":"2020-08-09T14:20:24.2634879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35194943-b6e0-4264-84de-573880712139","name":"35194943-b6e0-4264-84de-573880712139","status":"Deleting","startTime":"2020-09-02T14:13:09.2954703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1259,7 +1211,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:20:55 GMT
+ - Wed, 02 Sep 2020 14:13:40 GMT
expires:
- '-1'
pragma:
@@ -1291,13 +1243,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35194943-b6e0-4264-84de-573880712139?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d","name":"8b7c7f88-8e67-4c38-8526-918d2b0c224d","status":"Deleting","startTime":"2020-08-09T14:20:24.2634879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35194943-b6e0-4264-84de-573880712139","name":"35194943-b6e0-4264-84de-573880712139","status":"Deleting","startTime":"2020-09-02T14:13:09.2954703Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1308,7 +1260,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:21:27 GMT
+ - Wed, 02 Sep 2020 14:14:11 GMT
expires:
- '-1'
pragma:
@@ -1340,62 +1292,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35194943-b6e0-4264-84de-573880712139?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d","name":"8b7c7f88-8e67-4c38-8526-918d2b0c224d","status":"Deleting","startTime":"2020-08-09T14:20:24.2634879Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '561'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 14:21:57 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b7c7f88-8e67-4c38-8526-918d2b0c224d","name":"8b7c7f88-8e67-4c38-8526-918d2b0c224d","status":"Succeeded","startTime":"2020-08-09T14:20:24.2634879Z","endTime":"2020-08-09T14:22:20.2008464Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/35194943-b6e0-4264-84de-573880712139","name":"35194943-b6e0-4264-84de-573880712139","status":"Succeeded","startTime":"2020-09-02T14:13:09.2954703Z","endTime":"2020-09-02T14:14:15.2489944Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1406,7 +1309,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:22:27 GMT
+ - Wed, 02 Sep 2020 14:14:41 GMT
expires:
- '-1'
pragma:
@@ -1438,12 +1341,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -1457,7 +1360,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:22:29 GMT
+ - Wed, 02 Sep 2020 14:14:41 GMT
expires:
- '-1'
pragma:
@@ -1483,12 +1386,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1496,17 +1399,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5eca00d-b47e-497c-b951-f442fb8bbece?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b50cfd5d-46a3-4f4e-993c-c458aba3fc55?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:22:31 GMT
+ - Wed, 02 Sep 2020 14:14:43 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5eca00d-b47e-497c-b951-f442fb8bbece?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b50cfd5d-46a3-4f4e-993c-c458aba3fc55?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1518,7 +1421,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14989'
+ - '14997'
x-powered-by:
- ASP.NET
status:
@@ -1534,24 +1437,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5eca00d-b47e-497c-b951-f442fb8bbece?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b50cfd5d-46a3-4f4e-993c-c458aba3fc55?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f5eca00d-b47e-497c-b951-f442fb8bbece","name":"f5eca00d-b47e-497c-b951-f442fb8bbece","status":"Succeeded","startTime":"2020-08-09T14:22:32.0833691Z","endTime":"2020-08-09T14:22:32.286671Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/b50cfd5d-46a3-4f4e-993c-c458aba3fc55","name":"b50cfd5d-46a3-4f4e-993c-c458aba3fc55","status":"Succeeded","startTime":"2020-09-02T14:14:43.7863599Z","endTime":"2020-09-02T14:14:44.0050739Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '544'
+ - '545'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:23:04 GMT
+ - Wed, 02 Sep 2020 14:15:15 GMT
expires:
- '-1'
pragma:
@@ -1585,12 +1488,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1598,7 +1501,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:23:04 GMT
+ - Wed, 02 Sep 2020 14:15:21 GMT
expires:
- '-1'
pragma:
@@ -1608,7 +1511,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14988'
+ - '14996'
status:
code: 204
message: No Content
@@ -1624,12 +1527,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1637,7 +1540,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:23:05 GMT
+ - Wed, 02 Sep 2020 14:15:21 GMT
expires:
- '-1'
pragma:
@@ -1647,7 +1550,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14987'
+ - '14995'
status:
code: 204
message: No Content
@@ -1663,12 +1566,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1676,7 +1579,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:23:06 GMT
+ - Wed, 02 Sep 2020 14:15:22 GMT
expires:
- '-1'
pragma:
@@ -1686,7 +1589,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14986'
+ - '14994'
status:
code: 204
message: No Content
@@ -1702,12 +1605,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1715,7 +1618,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:23:06 GMT
+ - Wed, 02 Sep 2020 14:15:22 GMT
expires:
- '-1'
pragma:
@@ -1725,7 +1628,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14985'
+ - '14993'
status:
code: 204
message: No Content
@@ -1739,12 +1642,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -1758,7 +1661,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:23:07 GMT
+ - Wed, 02 Sep 2020 14:15:22 GMT
expires:
- '-1'
pragma:
@@ -1784,12 +1687,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1797,17 +1700,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f152934e-67ad-4618-859a-873331409471?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f694fe47-5020-4002-b8c3-45fca4b2b0af?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:23:08 GMT
+ - Wed, 02 Sep 2020 14:15:23 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f152934e-67ad-4618-859a-873331409471?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f694fe47-5020-4002-b8c3-45fca4b2b0af?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1819,7 +1722,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14984'
+ - '14992'
x-powered-by:
- ASP.NET
status:
@@ -1835,24 +1738,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f152934e-67ad-4618-859a-873331409471?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f694fe47-5020-4002-b8c3-45fca4b2b0af?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f152934e-67ad-4618-859a-873331409471","name":"f152934e-67ad-4618-859a-873331409471","status":"Succeeded","startTime":"2020-08-09T14:23:08.4388467Z","endTime":"2020-08-09T14:23:08.5170051Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f694fe47-5020-4002-b8c3-45fca4b2b0af","name":"f694fe47-5020-4002-b8c3-45fca4b2b0af","status":"Succeeded","startTime":"2020-09-02T14:15:23.2527084Z","endTime":"2020-09-02T14:15:23.33081Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '511'
+ - '509'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:23:40 GMT
+ - Wed, 02 Sep 2020 14:15:53 GMT
expires:
- '-1'
pragma:
@@ -1884,12 +1787,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -1903,7 +1806,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:23:40 GMT
+ - Wed, 02 Sep 2020 14:15:55 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml
index a91c982fa089..64cacb1980db 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,20 +13,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A23%3A49.1660682Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A55%3A50.9904416Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab4afeff-2427-4888-afa5-47c9abb2806f?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8314935-be3b-49be-b5d8-3df90fa67ba1?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -34,9 +34,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:23:50 GMT
+ - Wed, 02 Sep 2020 13:55:51 GMT
etag:
- - W/"datetime'2020-08-09T14%3A23%3A49.1660682Z'"
+ - W/"datetime'2020-09-02T13%3A55%3A50.9904416Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab4afeff-2427-4888-afa5-47c9abb2806f?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8314935-be3b-49be-b5d8-3df90fa67ba1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab4afeff-2427-4888-afa5-47c9abb2806f","name":"ab4afeff-2427-4888-afa5-47c9abb2806f","status":"Succeeded","startTime":"2020-08-09T14:23:49.0850456Z","endTime":"2020-08-09T14:23:49.2257437Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d8314935-be3b-49be-b5d8-3df90fa67ba1","name":"d8314935-be3b-49be-b5d8-3df90fa67ba1","status":"Succeeded","startTime":"2020-09-02T13:55:50.9258231Z","endTime":"2020-09-02T13:55:51.0665288Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:24:22 GMT
+ - Wed, 02 Sep 2020 13:56:23 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A23%3A49.2241102Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T13%3A55%3A51.0614916Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:24:23 GMT
+ - Wed, 02 Sep 2020 13:56:23 GMT
etag:
- - W/"datetime'2020-08-09T14%3A23%3A49.2241102Z'"
+ - W/"datetime'2020-09-02T13%3A55%3A51.0614916Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A24%3A26.5143612Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A56%3A26.6585769Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4b2f98e-2bdb-4cbc-bdc8-e9d8db0c8fc2?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7ec777fe-5c98-46d1-acea-58b7831e390e?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:24:26 GMT
+ - Wed, 02 Sep 2020 13:56:27 GMT
etag:
- - W/"datetime'2020-08-09T14%3A24%3A26.5143612Z'"
+ - W/"datetime'2020-09-02T13%3A56%3A26.6585769Z'"
expires:
- '-1'
pragma:
@@ -226,13 +226,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4b2f98e-2bdb-4cbc-bdc8-e9d8db0c8fc2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7ec777fe-5c98-46d1-acea-58b7831e390e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4b2f98e-2bdb-4cbc-bdc8-e9d8db0c8fc2","name":"f4b2f98e-2bdb-4cbc-bdc8-e9d8db0c8fc2","status":"Succeeded","startTime":"2020-08-09T14:24:26.4405485Z","endTime":"2020-08-09T14:24:26.7373727Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7ec777fe-5c98-46d1-acea-58b7831e390e","name":"7ec777fe-5c98-46d1-acea-58b7831e390e","status":"Succeeded","startTime":"2020-09-02T13:56:26.5656734Z","endTime":"2020-09-02T13:56:27.0656646Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -243,7 +243,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:24:59 GMT
+ - Wed, 02 Sep 2020 13:56:58 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A24%3A26.7355229Z''\"","location":"westus2","properties":{"poolId":"f2f772a6-aa47-9125-cd0a-7917ca6ee0b7","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A56%3A27.0578583Z''\"","location":"westus2stage","properties":{"poolId":"11340612-bf58-05cb-c250-4e2c15eb9825","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:24:59 GMT
+ - Wed, 02 Sep 2020 13:56:58 GMT
etag:
- - W/"datetime'2020-08-09T14%3A24%3A26.7355229Z'"
+ - W/"datetime'2020-09-02T13%3A56%3A27.0578583Z'"
expires:
- '-1'
pragma:
@@ -317,9 +317,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +329,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '371'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A25%3A03.085086Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T13%3A57%3A02.4427941Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '764'
+ - '789'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:25:03 GMT
+ - Wed, 02 Sep 2020 13:57:03 GMT
etag:
- - W/"datetime'2020-08-09T14%3A25%3A03.085086Z'"
+ - W/"datetime'2020-09-02T13%3A57%3A02.4427941Z'"
expires:
- '-1'
pragma:
@@ -385,13 +386,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a","name":"e5c44c6c-518b-4e80-b722-718e7f98bf3a","status":"Creating","startTime":"2020-08-09T14:25:02.9806475Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","name":"51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","status":"Creating","startTime":"2020-09-02T13:57:02.3646773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -402,7 +403,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:25:35 GMT
+ - Wed, 02 Sep 2020 13:57:34 GMT
expires:
- '-1'
pragma:
@@ -434,13 +435,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a","name":"e5c44c6c-518b-4e80-b722-718e7f98bf3a","status":"Creating","startTime":"2020-08-09T14:25:02.9806475Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","name":"51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","status":"Creating","startTime":"2020-09-02T13:57:02.3646773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -451,7 +452,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:26:05 GMT
+ - Wed, 02 Sep 2020 13:58:05 GMT
expires:
- '-1'
pragma:
@@ -483,13 +484,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a","name":"e5c44c6c-518b-4e80-b722-718e7f98bf3a","status":"Creating","startTime":"2020-08-09T14:25:02.9806475Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","name":"51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","status":"Creating","startTime":"2020-09-02T13:57:02.3646773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -500,7 +501,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:26:37 GMT
+ - Wed, 02 Sep 2020 13:58:35 GMT
expires:
- '-1'
pragma:
@@ -532,13 +533,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a","name":"e5c44c6c-518b-4e80-b722-718e7f98bf3a","status":"Creating","startTime":"2020-08-09T14:25:02.9806475Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","name":"51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","status":"Creating","startTime":"2020-09-02T13:57:02.3646773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -549,7 +550,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:27:07 GMT
+ - Wed, 02 Sep 2020 13:59:05 GMT
expires:
- '-1'
pragma:
@@ -581,13 +582,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a","name":"e5c44c6c-518b-4e80-b722-718e7f98bf3a","status":"Creating","startTime":"2020-08-09T14:25:02.9806475Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","name":"51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","status":"Creating","startTime":"2020-09-02T13:57:02.3646773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -598,7 +599,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:27:38 GMT
+ - Wed, 02 Sep 2020 13:59:35 GMT
expires:
- '-1'
pragma:
@@ -630,13 +631,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a","name":"e5c44c6c-518b-4e80-b722-718e7f98bf3a","status":"Creating","startTime":"2020-08-09T14:25:02.9806475Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","name":"51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","status":"Creating","startTime":"2020-09-02T13:57:02.3646773Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -647,7 +648,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:28:09 GMT
+ - Wed, 02 Sep 2020 14:00:06 GMT
expires:
- '-1'
pragma:
@@ -679,62 +680,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a","name":"e5c44c6c-518b-4e80-b722-718e7f98bf3a","status":"Creating","startTime":"2020-08-09T14:25:02.9806475Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '561'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 14:28:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e5c44c6c-518b-4e80-b722-718e7f98bf3a","name":"e5c44c6c-518b-4e80-b722-718e7f98bf3a","status":"Succeeded","startTime":"2020-08-09T14:25:02.9806475Z","endTime":"2020-08-09T14:28:41.4706072Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","name":"51bec2e8-8c0b-4b60-8e2e-771fc5aff79f","status":"Succeeded","startTime":"2020-09-02T13:57:02.3646773Z","endTime":"2020-09-02T14:00:14.8064946Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -745,7 +697,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:29:10 GMT
+ - Wed, 02 Sep 2020 14:00:36 GMT
expires:
- '-1'
pragma:
@@ -777,26 +729,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A28%3A41.4666661Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"54e180ba-77af-2da1-218a-6dea105ba5be","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ae5eedfd","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A00%3A14.8049741Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"ab0788f9-deb0-3603-12bc-5512b8d98505","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_1f4a5bd6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:29:11 GMT
+ - Wed, 02 Sep 2020 14:00:39 GMT
etag:
- - W/"datetime'2020-08-09T14%3A28%3A41.4666661Z'"
+ - W/"datetime'2020-09-02T14%3A00%3A14.8049741Z'"
expires:
- '-1'
pragma:
@@ -828,28 +780,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A28%3A41.4666661Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"54e180ba-77af-2da1-218a-6dea105ba5be","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ae5eedfd","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A00%3A14.8049741Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"ab0788f9-deb0-3603-12bc-5512b8d98505","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_1f4a5bd6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:29:13 GMT
+ - Wed, 02 Sep 2020 14:00:40 GMT
etag:
- - W/"datetime'2020-08-09T14%3A28%3A41.4666661Z'"
+ - W/"datetime'2020-09-02T14%3A00%3A14.8049741Z'"
expires:
- '-1'
pragma:
@@ -872,7 +824,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -885,20 +837,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","name":"sdk-py-tests-snapshot-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","name":"sdk-py-tests-snapshot-1"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1511dcbc-4a02-4036-aede-f9971d1a63bb?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d0203304-9dd9-44a1-b365-e299104a8478?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -906,11 +858,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:29:15 GMT
+ - Wed, 02 Sep 2020 14:00:41 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1511dcbc-4a02-4036-aede-f9971d1a63bb?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d0203304-9dd9-44a1-b365-e299104a8478?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -938,13 +890,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1511dcbc-4a02-4036-aede-f9971d1a63bb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d0203304-9dd9-44a1-b365-e299104a8478?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1511dcbc-4a02-4036-aede-f9971d1a63bb","name":"1511dcbc-4a02-4036-aede-f9971d1a63bb","status":"Succeeded","startTime":"2020-08-09T14:29:16.2832983Z","endTime":"2020-08-09T14:29:18.7231515Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d0203304-9dd9-44a1-b365-e299104a8478","name":"d0203304-9dd9-44a1-b365-e299104a8478","status":"Succeeded","startTime":"2020-09-02T14:00:41.7924596Z","endTime":"2020-09-02T14:00:43.6049455Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -955,7 +907,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:29:48 GMT
+ - Wed, 02 Sep 2020 14:01:12 GMT
expires:
- '-1'
pragma:
@@ -987,13 +939,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"a2fa731d-3724-981e-a7d1-0395d424325d","name":"sdk-py-tests-snapshot-1","created":"2020-08-09T14:29:16Z"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"adea818e-e29e-7bfc-5519-e99bf215d852","name":"sdk-py-tests-snapshot-1","created":"2020-09-02T14:00:41Z"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1004,7 +956,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:29:48 GMT
+ - Wed, 02 Sep 2020 14:01:12 GMT
expires:
- '-1'
pragma:
@@ -1036,28 +988,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A28%3A41.4666661Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"54e180ba-77af-2da1-218a-6dea105ba5be","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ae5eedfd","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A00%3A14.8049741Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"ab0788f9-deb0-3603-12bc-5512b8d98505","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_1f4a5bd6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:29:49 GMT
+ - Wed, 02 Sep 2020 14:01:14 GMT
etag:
- - W/"datetime'2020-08-09T14%3A28%3A41.4666661Z'"
+ - W/"datetime'2020-09-02T14%3A00%3A14.8049741Z'"
expires:
- '-1'
pragma:
@@ -1080,7 +1032,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -1093,20 +1045,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Creating","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","name":"sdk-py-tests-snapshot-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Creating","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","name":"sdk-py-tests-snapshot-2"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbb8272c-30d2-4a6d-894e-6812a4275747?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a863c22d-5d9a-4dbf-827f-6bba098e7162?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -1114,11 +1066,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:29:51 GMT
+ - Wed, 02 Sep 2020 14:01:15 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbb8272c-30d2-4a6d-894e-6812a4275747?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a863c22d-5d9a-4dbf-827f-6bba098e7162?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1146,13 +1098,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbb8272c-30d2-4a6d-894e-6812a4275747?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a863c22d-5d9a-4dbf-827f-6bba098e7162?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbb8272c-30d2-4a6d-894e-6812a4275747","name":"dbb8272c-30d2-4a6d-894e-6812a4275747","status":"Succeeded","startTime":"2020-08-09T14:29:51.0291166Z","endTime":"2020-08-09T14:29:53.5777162Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a863c22d-5d9a-4dbf-827f-6bba098e7162","name":"a863c22d-5d9a-4dbf-827f-6bba098e7162","status":"Succeeded","startTime":"2020-09-02T14:01:15.1152978Z","endTime":"2020-09-02T14:01:17.3700123Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1163,7 +1115,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:30:22 GMT
+ - Wed, 02 Sep 2020 14:01:46 GMT
expires:
- '-1'
pragma:
@@ -1195,13 +1147,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"759b05e8-4424-8680-0c26-7059cfbdbf06","name":"sdk-py-tests-snapshot-2","created":"2020-08-09T14:29:51Z"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"e67fe630-9cf4-1909-642b-0d9d18a60e99","name":"sdk-py-tests-snapshot-2","created":"2020-09-02T14:01:15Z"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1212,7 +1164,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:30:23 GMT
+ - Wed, 02 Sep 2020 14:01:46 GMT
expires:
- '-1'
pragma:
@@ -1244,15 +1196,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"a2fa731d-3724-981e-a7d1-0395d424325d","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","name":"sdk-py-tests-snapshot-1","created":"2020-08-09T14:29:16Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"759b05e8-4424-8680-0c26-7059cfbdbf06","fileSystemId":"54e180ba-77af-2da1-218a-6dea105ba5be","name":"sdk-py-tests-snapshot-2","created":"2020-08-09T14:29:51Z"}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"adea818e-e29e-7bfc-5519-e99bf215d852","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","name":"sdk-py-tests-snapshot-1","created":"2020-09-02T14:00:41Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2stage","properties":{"provisioningState":"Succeeded","snapshotId":"e67fe630-9cf4-1909-642b-0d9d18a60e99","fileSystemId":"ab0788f9-deb0-3603-12bc-5512b8d98505","name":"sdk-py-tests-snapshot-2","created":"2020-09-02T14:01:15Z"}}]}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1263,7 +1215,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:30:24 GMT
+ - Wed, 02 Sep 2020 14:01:47 GMT
expires:
- '-1'
pragma:
@@ -1297,12 +1249,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
string: ''
@@ -1310,17 +1262,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2198785e-fbd8-4dc2-aa45-c1b6aee78ea1?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/317b5a28-1437-49e1-92bd-bbb6be2a74d5?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:30:24 GMT
+ - Wed, 02 Sep 2020 14:01:47 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2198785e-fbd8-4dc2-aa45-c1b6aee78ea1?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/317b5a28-1437-49e1-92bd-bbb6be2a74d5?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1348,13 +1300,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2198785e-fbd8-4dc2-aa45-c1b6aee78ea1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/317b5a28-1437-49e1-92bd-bbb6be2a74d5?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2198785e-fbd8-4dc2-aa45-c1b6aee78ea1","name":"2198785e-fbd8-4dc2-aa45-c1b6aee78ea1","status":"Succeeded","startTime":"2020-08-09T14:30:25.1615721Z","endTime":"2020-08-09T14:30:27.8824835Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/317b5a28-1437-49e1-92bd-bbb6be2a74d5","name":"317b5a28-1437-49e1-92bd-bbb6be2a74d5","status":"Succeeded","startTime":"2020-09-02T14:01:48.1095816Z","endTime":"2020-09-02T14:01:50.8289167Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1365,7 +1317,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:30:56 GMT
+ - Wed, 02 Sep 2020 14:02:18 GMT
expires:
- '-1'
pragma:
@@ -1399,12 +1351,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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=2020-06-01
response:
body:
string: ''
@@ -1412,17 +1364,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10947506-32d9-4825-9eb6-0878f83ee4cb?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ec21b193-2be1-4c9f-a7ba-48f0e504efa9?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:30:57 GMT
+ - Wed, 02 Sep 2020 14:02:19 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10947506-32d9-4825-9eb6-0878f83ee4cb?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ec21b193-2be1-4c9f-a7ba-48f0e504efa9?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1450,24 +1402,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10947506-32d9-4825-9eb6-0878f83ee4cb?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ec21b193-2be1-4c9f-a7ba-48f0e504efa9?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/10947506-32d9-4825-9eb6-0878f83ee4cb","name":"10947506-32d9-4825-9eb6-0878f83ee4cb","status":"Succeeded","startTime":"2020-08-09T14:30:58.0479144Z","endTime":"2020-08-09T14:31:01.1174597Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ec21b193-2be1-4c9f-a7ba-48f0e504efa9","name":"ec21b193-2be1-4c9f-a7ba-48f0e504efa9","status":"Succeeded","startTime":"2020-09-02T14:02:19.8167161Z","endTime":"2020-09-02T14:02:22.389032Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '606'
+ - '605'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:31:29 GMT
+ - Wed, 02 Sep 2020 14:02:51 GMT
expires:
- '-1'
pragma:
@@ -1501,12 +1453,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1514,17 +1466,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e43f6912-ae98-4624-8f1f-f5da666cf2ed?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f447b930-3a78-4d83-8c7e-5a3bd42533b2?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:31:30 GMT
+ - Wed, 02 Sep 2020 14:02:51 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e43f6912-ae98-4624-8f1f-f5da666cf2ed?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f447b930-3a78-4d83-8c7e-5a3bd42533b2?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1552,13 +1504,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e43f6912-ae98-4624-8f1f-f5da666cf2ed?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f447b930-3a78-4d83-8c7e-5a3bd42533b2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e43f6912-ae98-4624-8f1f-f5da666cf2ed","name":"e43f6912-ae98-4624-8f1f-f5da666cf2ed","status":"Deleting","startTime":"2020-08-09T14:31:30.9957308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f447b930-3a78-4d83-8c7e-5a3bd42533b2","name":"f447b930-3a78-4d83-8c7e-5a3bd42533b2","status":"Deleting","startTime":"2020-09-02T14:02:52.4450382Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1569,7 +1521,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:32:02 GMT
+ - Wed, 02 Sep 2020 14:03:23 GMT
expires:
- '-1'
pragma:
@@ -1601,13 +1553,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e43f6912-ae98-4624-8f1f-f5da666cf2ed?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f447b930-3a78-4d83-8c7e-5a3bd42533b2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e43f6912-ae98-4624-8f1f-f5da666cf2ed","name":"e43f6912-ae98-4624-8f1f-f5da666cf2ed","status":"Deleting","startTime":"2020-08-09T14:31:30.9957308Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f447b930-3a78-4d83-8c7e-5a3bd42533b2","name":"f447b930-3a78-4d83-8c7e-5a3bd42533b2","status":"Deleting","startTime":"2020-09-02T14:02:52.4450382Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1618,7 +1570,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:32:33 GMT
+ - Wed, 02 Sep 2020 14:03:53 GMT
expires:
- '-1'
pragma:
@@ -1650,13 +1602,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e43f6912-ae98-4624-8f1f-f5da666cf2ed?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f447b930-3a78-4d83-8c7e-5a3bd42533b2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e43f6912-ae98-4624-8f1f-f5da666cf2ed","name":"e43f6912-ae98-4624-8f1f-f5da666cf2ed","status":"Succeeded","startTime":"2020-08-09T14:31:30.9957308Z","endTime":"2020-08-09T14:32:39.5329433Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f447b930-3a78-4d83-8c7e-5a3bd42533b2","name":"f447b930-3a78-4d83-8c7e-5a3bd42533b2","status":"Succeeded","startTime":"2020-09-02T14:02:52.4450382Z","endTime":"2020-09-02T14:04:00.5366995Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1667,7 +1619,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:33:03 GMT
+ - Wed, 02 Sep 2020 14:04:24 GMT
expires:
- '-1'
pragma:
@@ -1699,12 +1651,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -1718,7 +1670,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:33:05 GMT
+ - Wed, 02 Sep 2020 14:04:24 GMT
expires:
- '-1'
pragma:
@@ -1744,12 +1696,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1757,17 +1709,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cfd9196-dcb9-4925-9f7c-4988e442dca3?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d86b9b27-7d5a-47e7-8482-609973aeff51?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:33:07 GMT
+ - Wed, 02 Sep 2020 14:04:26 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cfd9196-dcb9-4925-9f7c-4988e442dca3?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d86b9b27-7d5a-47e7-8482-609973aeff51?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1795,13 +1747,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cfd9196-dcb9-4925-9f7c-4988e442dca3?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d86b9b27-7d5a-47e7-8482-609973aeff51?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7cfd9196-dcb9-4925-9f7c-4988e442dca3","name":"7cfd9196-dcb9-4925-9f7c-4988e442dca3","status":"Succeeded","startTime":"2020-08-09T14:33:07.3988142Z","endTime":"2020-08-09T14:33:07.5863584Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d86b9b27-7d5a-47e7-8482-609973aeff51","name":"d86b9b27-7d5a-47e7-8482-609973aeff51","status":"Succeeded","startTime":"2020-09-02T14:04:27.0116952Z","endTime":"2020-09-02T14:04:27.1835971Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1812,7 +1764,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:33:39 GMT
+ - Wed, 02 Sep 2020 14:04:58 GMT
expires:
- '-1'
pragma:
@@ -1846,12 +1798,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1859,7 +1811,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:33:39 GMT
+ - Wed, 02 Sep 2020 14:04:57 GMT
expires:
- '-1'
pragma:
@@ -1885,12 +1837,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1898,7 +1850,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:33:40 GMT
+ - Wed, 02 Sep 2020 14:04:58 GMT
expires:
- '-1'
pragma:
@@ -1924,12 +1876,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1937,7 +1889,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:33:40 GMT
+ - Wed, 02 Sep 2020 14:04:58 GMT
expires:
- '-1'
pragma:
@@ -1963,12 +1915,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1976,7 +1928,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:33:41 GMT
+ - Wed, 02 Sep 2020 14:04:58 GMT
expires:
- '-1'
pragma:
@@ -2000,12 +1952,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -2019,7 +1971,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:33:42 GMT
+ - Wed, 02 Sep 2020 14:04:58 GMT
expires:
- '-1'
pragma:
@@ -2045,12 +1997,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -2058,17 +2010,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/daa889bc-f9f8-4bd4-be5b-8266986e3bef?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0506298-3c5a-4338-9657-e3b72806c85a?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:33:43 GMT
+ - Wed, 02 Sep 2020 14:05:00 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/daa889bc-f9f8-4bd4-be5b-8266986e3bef?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0506298-3c5a-4338-9657-e3b72806c85a?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -2096,13 +2048,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/daa889bc-f9f8-4bd4-be5b-8266986e3bef?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0506298-3c5a-4338-9657-e3b72806c85a?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/daa889bc-f9f8-4bd4-be5b-8266986e3bef","name":"daa889bc-f9f8-4bd4-be5b-8266986e3bef","status":"Succeeded","startTime":"2020-08-09T14:33:43.7886003Z","endTime":"2020-08-09T14:33:43.9448534Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e0506298-3c5a-4338-9657-e3b72806c85a","name":"e0506298-3c5a-4338-9657-e3b72806c85a","status":"Succeeded","startTime":"2020-09-02T14:05:00.5208335Z","endTime":"2020-09-02T14:05:00.6302328Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -2113,7 +2065,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:34:15 GMT
+ - Wed, 02 Sep 2020 14:05:31 GMT
expires:
- '-1'
pragma:
@@ -2145,12 +2097,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -2164,7 +2116,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:34:16 GMT
+ - Wed, 02 Sep 2020 14:05:32 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml
index 1e93c1c1799f..37dad59d8d4d 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,30 +13,30 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A38%3A26.0118209Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T14%3A25%3A09.3434144Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5d16ac4b-2dd8-4e8f-a7da-f083b228834f?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7baa0a15-5426-4ff0-9ed2-b4df3cb3c87b?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '347'
+ - '348'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:38:26 GMT
+ - Wed, 02 Sep 2020 14:25:10 GMT
etag:
- - W/"datetime'2020-08-09T14%3A38%3A26.0118209Z'"
+ - W/"datetime'2020-09-02T14%3A25%3A09.3434144Z'"
expires:
- '-1'
pragma:
@@ -50,7 +50,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1196'
x-powered-by:
- ASP.NET
status:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5d16ac4b-2dd8-4e8f-a7da-f083b228834f?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7baa0a15-5426-4ff0-9ed2-b4df3cb3c87b?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5d16ac4b-2dd8-4e8f-a7da-f083b228834f","name":"5d16ac4b-2dd8-4e8f-a7da-f083b228834f","status":"Succeeded","startTime":"2020-08-09T14:38:25.8814959Z","endTime":"2020-08-09T14:38:26.1783641Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7baa0a15-5426-4ff0-9ed2-b4df3cb3c87b","name":"7baa0a15-5426-4ff0-9ed2-b4df3cb3c87b","status":"Succeeded","startTime":"2020-09-02T14:25:09.2647536Z","endTime":"2020-09-02T14:25:09.4209416Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:38:58 GMT
+ - Wed, 02 Sep 2020 14:25:41 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A38%3A26.1789434Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T14%3A25%3A09.4144645Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:38:58 GMT
+ - Wed, 02 Sep 2020 14:25:42 GMT
etag:
- - W/"datetime'2020-08-09T14%3A38%3A26.1789434Z'"
+ - W/"datetime'2020-09-02T14%3A25%3A09.4144645Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A39%3A02.9598209Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A25%3A45.2146933Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0e987b9c-7f60-4c51-9866-534c823a3a3a?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/695e8ad8-cf4a-4156-a3b9-94ef1ddb44af?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:39:03 GMT
+ - Wed, 02 Sep 2020 14:25:45 GMT
etag:
- - W/"datetime'2020-08-09T14%3A39%3A02.9598209Z'"
+ - W/"datetime'2020-09-02T14%3A25%3A45.2146933Z'"
expires:
- '-1'
pragma:
@@ -210,7 +210,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -226,13 +226,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0e987b9c-7f60-4c51-9866-534c823a3a3a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/695e8ad8-cf4a-4156-a3b9-94ef1ddb44af?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0e987b9c-7f60-4c51-9866-534c823a3a3a","name":"0e987b9c-7f60-4c51-9866-534c823a3a3a","status":"Succeeded","startTime":"2020-08-09T14:39:02.9150036Z","endTime":"2020-08-09T14:39:03.2189506Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/695e8ad8-cf4a-4156-a3b9-94ef1ddb44af","name":"695e8ad8-cf4a-4156-a3b9-94ef1ddb44af","status":"Succeeded","startTime":"2020-09-02T14:25:45.1300843Z","endTime":"2020-09-02T14:25:45.3800812Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -243,7 +243,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:39:35 GMT
+ - Wed, 02 Sep 2020 14:26:17 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A39%3A03.2080031Z''\"","location":"westus2","properties":{"poolId":"ac0bdd79-32b9-03b3-8d06-0f9f95018e18","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A25%3A45.3708029Z''\"","location":"westus2stage","properties":{"poolId":"a42098a8-db25-bbac-da5c-dabe69bd7a5b","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:39:36 GMT
+ - Wed, 02 Sep 2020 14:26:18 GMT
etag:
- - W/"datetime'2020-08-09T14%3A39%3A03.2080031Z'"
+ - W/"datetime'2020-09-02T14%3A25%3A45.3708029Z'"
expires:
- '-1'
pragma:
@@ -317,9 +317,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +329,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '371'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A39%3A50.3525474Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A26%3A31.0660044Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '765'
+ - '789'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:39:50 GMT
+ - Wed, 02 Sep 2020 14:26:32 GMT
etag:
- - W/"datetime'2020-08-09T14%3A39%3A50.3525474Z'"
+ - W/"datetime'2020-09-02T14%3A26%3A31.0660044Z'"
expires:
- '-1'
pragma:
@@ -369,7 +370,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1194'
x-powered-by:
- ASP.NET
status:
@@ -385,24 +386,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","name":"8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","status":"Creating","startTime":"2020-08-09T14:39:50.2797252Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","name":"42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","status":"Creating","startTime":"2020-09-02T14:26:30.967036Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '560'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:40:23 GMT
+ - Wed, 02 Sep 2020 14:27:03 GMT
expires:
- '-1'
pragma:
@@ -434,24 +435,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","name":"8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","status":"Creating","startTime":"2020-08-09T14:39:50.2797252Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","name":"42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","status":"Creating","startTime":"2020-09-02T14:26:30.967036Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '560'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:40:53 GMT
+ - Wed, 02 Sep 2020 14:27:33 GMT
expires:
- '-1'
pragma:
@@ -483,24 +484,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","name":"8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","status":"Creating","startTime":"2020-08-09T14:39:50.2797252Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","name":"42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","status":"Creating","startTime":"2020-09-02T14:26:30.967036Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '560'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:41:24 GMT
+ - Wed, 02 Sep 2020 14:28:03 GMT
expires:
- '-1'
pragma:
@@ -532,24 +533,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","name":"8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","status":"Creating","startTime":"2020-08-09T14:39:50.2797252Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","name":"42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","status":"Creating","startTime":"2020-09-02T14:26:30.967036Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '560'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:41:55 GMT
+ - Wed, 02 Sep 2020 14:28:33 GMT
expires:
- '-1'
pragma:
@@ -581,24 +582,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","name":"8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","status":"Creating","startTime":"2020-08-09T14:39:50.2797252Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","name":"42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","status":"Creating","startTime":"2020-09-02T14:26:30.967036Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '560'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:42:25 GMT
+ - Wed, 02 Sep 2020 14:29:03 GMT
expires:
- '-1'
pragma:
@@ -630,24 +631,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","name":"8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","status":"Creating","startTime":"2020-08-09T14:39:50.2797252Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","name":"42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","status":"Creating","startTime":"2020-09-02T14:26:30.967036Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '560'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:42:56 GMT
+ - Wed, 02 Sep 2020 14:29:34 GMT
expires:
- '-1'
pragma:
@@ -679,13 +680,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","name":"8dda9d83-b76a-4b46-a6fa-d5bd0e2ad7ee","status":"Succeeded","startTime":"2020-08-09T14:39:50.2797252Z","endTime":"2020-08-09T14:42:59.294434Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","name":"42f13106-4ddc-4b0a-81c9-f6c0a8aa8bf0","status":"Succeeded","startTime":"2020-09-02T14:26:30.967036Z","endTime":"2020-09-02T14:29:42.1491797Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -696,7 +697,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:43:27 GMT
+ - Wed, 02 Sep 2020 14:30:04 GMT
expires:
- '-1'
pragma:
@@ -728,26 +729,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A42%3A59.2956245Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"decfd3b9-f812-aa42-313d-e85159dc5c23","fileSystemId":"decfd3b9-f812-aa42-313d-e85159dc5c23","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"decfd3b9-f812-aa42-313d-e85159dc5c23","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ff3490d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A29%3A42.1516626Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"d3057dbd-b92f-5044-ac40-70bebaea920b","fileSystemId":"d3057dbd-b92f-5044-ac40-70bebaea920b","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"d3057dbd-b92f-5044-ac40-70bebaea920b","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ebfd5219","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:43:27 GMT
+ - Wed, 02 Sep 2020 14:30:05 GMT
etag:
- - W/"datetime'2020-08-09T14%3A42%3A59.2956245Z'"
+ - W/"datetime'2020-09-02T14%3A29%3A42.1516626Z'"
expires:
- '-1'
pragma:
@@ -779,26 +780,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A42%3A59.2956245Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"decfd3b9-f812-aa42-313d-e85159dc5c23","fileSystemId":"decfd3b9-f812-aa42-313d-e85159dc5c23","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"decfd3b9-f812-aa42-313d-e85159dc5c23","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ff3490d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A29%3A42.1516626Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"d3057dbd-b92f-5044-ac40-70bebaea920b","fileSystemId":"d3057dbd-b92f-5044-ac40-70bebaea920b","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"d3057dbd-b92f-5044-ac40-70bebaea920b","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_ebfd5219","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}]}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1395'
+ - '1598'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:43:29 GMT
+ - Wed, 02 Sep 2020 14:30:07 GMT
expires:
- '-1'
pragma:
@@ -832,12 +833,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: ''
@@ -845,17 +846,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e118a23-4f80-422c-8e15-542798cd50d2?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:43:31 GMT
+ - Wed, 02 Sep 2020 14:30:07 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e118a23-4f80-422c-8e15-542798cd50d2?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -867,7 +868,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14996'
+ - '14999'
x-powered-by:
- ASP.NET
status:
@@ -883,62 +884,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee","name":"966bb93b-6e77-42aa-b295-dc78fe99f3ee","status":"Deleting","startTime":"2020-08-09T14:43:31.5270015Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '561'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 14:44:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e118a23-4f80-422c-8e15-542798cd50d2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee","name":"966bb93b-6e77-42aa-b295-dc78fe99f3ee","status":"Deleting","startTime":"2020-08-09T14:43:31.5270015Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e118a23-4f80-422c-8e15-542798cd50d2","name":"3e118a23-4f80-422c-8e15-542798cd50d2","status":"Deleting","startTime":"2020-09-02T14:30:07.8474044Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -949,7 +901,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:44:33 GMT
+ - Wed, 02 Sep 2020 14:30:38 GMT
expires:
- '-1'
pragma:
@@ -981,13 +933,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e118a23-4f80-422c-8e15-542798cd50d2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee","name":"966bb93b-6e77-42aa-b295-dc78fe99f3ee","status":"Deleting","startTime":"2020-08-09T14:43:31.5270015Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e118a23-4f80-422c-8e15-542798cd50d2","name":"3e118a23-4f80-422c-8e15-542798cd50d2","status":"Deleting","startTime":"2020-09-02T14:30:07.8474044Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -998,7 +950,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:45:04 GMT
+ - Wed, 02 Sep 2020 14:31:09 GMT
expires:
- '-1'
pragma:
@@ -1030,13 +982,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e118a23-4f80-422c-8e15-542798cd50d2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/966bb93b-6e77-42aa-b295-dc78fe99f3ee","name":"966bb93b-6e77-42aa-b295-dc78fe99f3ee","status":"Succeeded","startTime":"2020-08-09T14:43:31.5270015Z","endTime":"2020-08-09T14:45:05.1132092Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3e118a23-4f80-422c-8e15-542798cd50d2","name":"3e118a23-4f80-422c-8e15-542798cd50d2","status":"Succeeded","startTime":"2020-09-02T14:30:07.8474044Z","endTime":"2020-09-02T14:31:13.8156549Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1047,7 +999,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:45:36 GMT
+ - Wed, 02 Sep 2020 14:31:39 GMT
expires:
- '-1'
pragma:
@@ -1079,12 +1031,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2020-06-01
response:
body:
string: '{"value":[]}'
@@ -1098,7 +1050,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:45:37 GMT
+ - Wed, 02 Sep 2020 14:31:40 GMT
expires:
- '-1'
pragma:
@@ -1130,12 +1082,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -1149,7 +1101,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:45:38 GMT
+ - Wed, 02 Sep 2020 14:31:41 GMT
expires:
- '-1'
pragma:
@@ -1175,12 +1127,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1188,17 +1140,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/934fa7cc-b6a9-4453-91c6-11f0eda0ab6a?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7d8dbd2-58eb-4beb-af29-330dab98d81c?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:45:50 GMT
+ - Wed, 02 Sep 2020 14:31:52 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/934fa7cc-b6a9-4453-91c6-11f0eda0ab6a?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7d8dbd2-58eb-4beb-af29-330dab98d81c?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1210,7 +1162,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14999'
+ - '14998'
x-powered-by:
- ASP.NET
status:
@@ -1226,13 +1178,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/934fa7cc-b6a9-4453-91c6-11f0eda0ab6a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7d8dbd2-58eb-4beb-af29-330dab98d81c?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/934fa7cc-b6a9-4453-91c6-11f0eda0ab6a","name":"934fa7cc-b6a9-4453-91c6-11f0eda0ab6a","status":"Succeeded","startTime":"2020-08-09T14:45:50.8883629Z","endTime":"2020-08-09T14:45:51.0602527Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f7d8dbd2-58eb-4beb-af29-330dab98d81c","name":"f7d8dbd2-58eb-4beb-af29-330dab98d81c","status":"Succeeded","startTime":"2020-09-02T14:31:52.7781884Z","endTime":"2020-09-02T14:31:52.9813195Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1243,7 +1195,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:46:22 GMT
+ - Wed, 02 Sep 2020 14:32:23 GMT
expires:
- '-1'
pragma:
@@ -1277,12 +1229,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1290,7 +1242,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:46:33 GMT
+ - Wed, 02 Sep 2020 14:32:33 GMT
expires:
- '-1'
pragma:
@@ -1300,7 +1252,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14998'
+ - '14997'
status:
code: 204
message: No Content
@@ -1316,12 +1268,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1329,7 +1281,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:46:44 GMT
+ - Wed, 02 Sep 2020 14:32:43 GMT
expires:
- '-1'
pragma:
@@ -1339,7 +1291,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14997'
+ - '14996'
status:
code: 204
message: No Content
@@ -1355,12 +1307,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1368,7 +1320,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:46:55 GMT
+ - Wed, 02 Sep 2020 14:32:54 GMT
expires:
- '-1'
pragma:
@@ -1378,7 +1330,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14996'
+ - '14995'
status:
code: 204
message: No Content
@@ -1394,12 +1346,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1407,7 +1359,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:47:06 GMT
+ - Wed, 02 Sep 2020 14:33:04 GMT
expires:
- '-1'
pragma:
@@ -1417,7 +1369,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14995'
+ - '14994'
status:
code: 204
message: No Content
@@ -1431,12 +1383,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -1450,7 +1402,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:47:16 GMT
+ - Wed, 02 Sep 2020 14:33:15 GMT
expires:
- '-1'
pragma:
@@ -1476,12 +1428,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1489,17 +1441,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b6e2926c-077b-4d68-af3b-7994cb7a7069?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e7ad2228-66bf-4e4a-a7a7-7158365ff6c3?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:47:18 GMT
+ - Wed, 02 Sep 2020 14:33:17 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b6e2926c-077b-4d68-af3b-7994cb7a7069?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e7ad2228-66bf-4e4a-a7a7-7158365ff6c3?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1511,7 +1463,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14994'
+ - '14993'
x-powered-by:
- ASP.NET
status:
@@ -1527,13 +1479,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b6e2926c-077b-4d68-af3b-7994cb7a7069?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e7ad2228-66bf-4e4a-a7a7-7158365ff6c3?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b6e2926c-077b-4d68-af3b-7994cb7a7069","name":"b6e2926c-077b-4d68-af3b-7994cb7a7069","status":"Succeeded","startTime":"2020-08-09T14:47:19.6834326Z","endTime":"2020-08-09T14:47:19.7615593Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e7ad2228-66bf-4e4a-a7a7-7158365ff6c3","name":"e7ad2228-66bf-4e4a-a7a7-7158365ff6c3","status":"Succeeded","startTime":"2020-09-02T14:33:17.1177519Z","endTime":"2020-09-02T14:33:17.2114879Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1544,7 +1496,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:47:50 GMT
+ - Wed, 02 Sep 2020 14:33:47 GMT
expires:
- '-1'
pragma:
@@ -1576,12 +1528,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -1595,7 +1547,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:47:53 GMT
+ - Wed, 02 Sep 2020 14:33:50 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml
index 634a997a8853..3caeb83fd0b9 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,20 +13,20 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A48%3A00.6248266Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-03T14%3A55%3A22.6048324Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a5959ce1-3579-4569-a864-3878b20fe32f?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e38b58b0-80ce-408d-818e-53401cb2e05f?api-version=2020-06-01
cache-control:
- no-cache
content-length:
@@ -34,9 +34,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:48:01 GMT
+ - Thu, 03 Sep 2020 14:55:23 GMT
etag:
- - W/"datetime'2020-08-09T14%3A48%3A00.6248266Z'"
+ - W/"datetime'2020-09-03T14%3A55%3A22.6048324Z'"
expires:
- '-1'
pragma:
@@ -50,7 +50,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a5959ce1-3579-4569-a864-3878b20fe32f?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e38b58b0-80ce-408d-818e-53401cb2e05f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a5959ce1-3579-4569-a864-3878b20fe32f","name":"a5959ce1-3579-4569-a864-3878b20fe32f","status":"Succeeded","startTime":"2020-08-09T14:48:00.5828191Z","endTime":"2020-08-09T14:48:00.7077683Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e38b58b0-80ce-408d-818e-53401cb2e05f","name":"e38b58b0-80ce-408d-818e-53401cb2e05f","status":"Succeeded","startTime":"2020-09-03T14:55:22.5321843Z","endTime":"2020-09-03T14:55:22.6728285Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:48:33 GMT
+ - Thu, 03 Sep 2020 14:55:55 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T14%3A48%3A00.6948782Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-03T14%3A55%3A22.6728811Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:48:33 GMT
+ - Thu, 03 Sep 2020 14:55:55 GMT
etag:
- - W/"datetime'2020-08-09T14%3A48%3A00.6948782Z'"
+ - W/"datetime'2020-09-03T14%3A55%3A22.6728811Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A48%3A36.6301386Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T14%3A55%3A58.3771431Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9cdc8ee-19b7-43e6-bf11-31c375a56b20?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dab03a50-0b52-44ca-b36b-cd26d4d6eb26?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:48:37 GMT
+ - Thu, 03 Sep 2020 14:56:00 GMT
etag:
- - W/"datetime'2020-08-09T14%3A48%3A36.6301386Z'"
+ - W/"datetime'2020-09-03T14%3A55%3A58.3771431Z'"
expires:
- '-1'
pragma:
@@ -210,7 +210,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1194'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -226,13 +226,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9cdc8ee-19b7-43e6-bf11-31c375a56b20?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dab03a50-0b52-44ca-b36b-cd26d4d6eb26?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9cdc8ee-19b7-43e6-bf11-31c375a56b20","name":"f9cdc8ee-19b7-43e6-bf11-31c375a56b20","status":"Succeeded","startTime":"2020-08-09T14:48:36.5588908Z","endTime":"2020-08-09T14:48:36.8089053Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/dab03a50-0b52-44ca-b36b-cd26d4d6eb26","name":"dab03a50-0b52-44ca-b36b-cd26d4d6eb26","status":"Succeeded","startTime":"2020-09-03T14:55:58.3285267Z","endTime":"2020-09-03T14:55:58.7347317Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -243,7 +243,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:49:09 GMT
+ - Thu, 03 Sep 2020 14:56:31 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A48%3A36.8112701Z''\"","location":"westus2","properties":{"poolId":"daaaaf2a-9607-25d5-e96a-52079b804b0b","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T14%3A55%3A58.7373965Z''\"","location":"westus2stage","properties":{"poolId":"0e619188-9438-c3c3-0880-2d858cf4c81b","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:49:10 GMT
+ - Thu, 03 Sep 2020 14:56:31 GMT
etag:
- - W/"datetime'2020-08-09T14%3A48%3A36.8112701Z'"
+ - W/"datetime'2020-09-03T14%3A55%3A58.7373965Z'"
expires:
- '-1'
pragma:
@@ -317,9 +317,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +329,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '371'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A49%3A23.394312Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T14%3A56%3A44.7799719Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '764'
+ - '789'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:49:24 GMT
+ - Thu, 03 Sep 2020 14:56:45 GMT
etag:
- - W/"datetime'2020-08-09T14%3A49%3A23.394312Z'"
+ - W/"datetime'2020-09-03T14%3A56%3A44.7799719Z'"
expires:
- '-1'
pragma:
@@ -369,7 +370,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1193'
+ - '1197'
x-powered-by:
- ASP.NET
status:
@@ -385,13 +386,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c","name":"585bec6e-0403-42a2-b397-9f92539d2f4c","status":"Creating","startTime":"2020-08-09T14:49:23.3319406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e","name":"c80c9ec3-01b7-4cb9-847f-277658902c6e","status":"Creating","startTime":"2020-09-03T14:56:44.7184687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -402,7 +403,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:49:56 GMT
+ - Thu, 03 Sep 2020 14:57:16 GMT
expires:
- '-1'
pragma:
@@ -434,13 +435,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c","name":"585bec6e-0403-42a2-b397-9f92539d2f4c","status":"Creating","startTime":"2020-08-09T14:49:23.3319406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e","name":"c80c9ec3-01b7-4cb9-847f-277658902c6e","status":"Creating","startTime":"2020-09-03T14:56:44.7184687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -451,7 +452,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:50:27 GMT
+ - Thu, 03 Sep 2020 14:57:47 GMT
expires:
- '-1'
pragma:
@@ -483,13 +484,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c","name":"585bec6e-0403-42a2-b397-9f92539d2f4c","status":"Creating","startTime":"2020-08-09T14:49:23.3319406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e","name":"c80c9ec3-01b7-4cb9-847f-277658902c6e","status":"Creating","startTime":"2020-09-03T14:56:44.7184687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -500,7 +501,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:50:57 GMT
+ - Thu, 03 Sep 2020 14:58:17 GMT
expires:
- '-1'
pragma:
@@ -532,13 +533,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c","name":"585bec6e-0403-42a2-b397-9f92539d2f4c","status":"Creating","startTime":"2020-08-09T14:49:23.3319406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e","name":"c80c9ec3-01b7-4cb9-847f-277658902c6e","status":"Creating","startTime":"2020-09-03T14:56:44.7184687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -549,7 +550,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:51:28 GMT
+ - Thu, 03 Sep 2020 14:58:50 GMT
expires:
- '-1'
pragma:
@@ -581,13 +582,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c","name":"585bec6e-0403-42a2-b397-9f92539d2f4c","status":"Creating","startTime":"2020-08-09T14:49:23.3319406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e","name":"c80c9ec3-01b7-4cb9-847f-277658902c6e","status":"Creating","startTime":"2020-09-03T14:56:44.7184687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -598,7 +599,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:51:59 GMT
+ - Thu, 03 Sep 2020 14:59:21 GMT
expires:
- '-1'
pragma:
@@ -630,13 +631,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c","name":"585bec6e-0403-42a2-b397-9f92539d2f4c","status":"Creating","startTime":"2020-08-09T14:49:23.3319406Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e","name":"c80c9ec3-01b7-4cb9-847f-277658902c6e","status":"Creating","startTime":"2020-09-03T14:56:44.7184687Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -647,7 +648,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:52:29 GMT
+ - Thu, 03 Sep 2020 14:59:51 GMT
expires:
- '-1'
pragma:
@@ -679,13 +680,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/585bec6e-0403-42a2-b397-9f92539d2f4c","name":"585bec6e-0403-42a2-b397-9f92539d2f4c","status":"Succeeded","startTime":"2020-08-09T14:49:23.3319406Z","endTime":"2020-08-09T14:52:34.0711837Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/c80c9ec3-01b7-4cb9-847f-277658902c6e","name":"c80c9ec3-01b7-4cb9-847f-277658902c6e","status":"Succeeded","startTime":"2020-09-03T14:56:44.7184687Z","endTime":"2020-09-03T14:59:53.6244596Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -696,7 +697,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:53:00 GMT
+ - Thu, 03 Sep 2020 15:00:22 GMT
expires:
- '-1'
pragma:
@@ -728,26 +729,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A52%3A34.075656Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"bacaf0cf-fd87-e094-78d5-736584539ea8","fileSystemId":"bacaf0cf-fd87-e094-78d5-736584539ea8","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"bacaf0cf-fd87-e094-78d5-736584539ea8","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_358ba3d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T14%3A59%3A53.622584Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"30f2cca6-c23a-b81c-39dc-0cd5c1ef9141","fileSystemId":"30f2cca6-c23a-b81c-39dc-0cd5c1ef9141","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"30f2cca6-c23a-b81c-39dc-0cd5c1ef9141","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0c2bd944","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1382'
+ - '1585'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:53:01 GMT
+ - Thu, 03 Sep 2020 15:00:22 GMT
etag:
- - W/"datetime'2020-08-09T14%3A52%3A34.075656Z'"
+ - W/"datetime'2020-09-03T14%3A59%3A53.622584Z'"
expires:
- '-1'
pragma:
@@ -779,28 +780,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T14%3A52%3A34.075656Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"bacaf0cf-fd87-e094-78d5-736584539ea8","fileSystemId":"bacaf0cf-fd87-e094-78d5-736584539ea8","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"bacaf0cf-fd87-e094-78d5-736584539ea8","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_358ba3d1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T14%3A59%3A53.622584Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"30f2cca6-c23a-b81c-39dc-0cd5c1ef9141","fileSystemId":"30f2cca6-c23a-b81c-39dc-0cd5c1ef9141","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"30f2cca6-c23a-b81c-39dc-0cd5c1ef9141","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_0c2bd944","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1382'
+ - '1585'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:53:03 GMT
+ - Thu, 03 Sep 2020 15:00:23 GMT
etag:
- - W/"datetime'2020-08-09T14%3A52%3A34.075656Z'"
+ - W/"datetime'2020-09-03T14%3A59%3A53.622584Z'"
expires:
- '-1'
pragma:
@@ -834,12 +835,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: ''
@@ -847,17 +848,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4d49949-18d7-439f-8e17-1f3486e51cf3?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ab48efac-2d29-4d52-849f-916770785dca?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:53:05 GMT
+ - Thu, 03 Sep 2020 15:00:25 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4d49949-18d7-439f-8e17-1f3486e51cf3?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ab48efac-2d29-4d52-849f-916770785dca?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -885,13 +886,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4d49949-18d7-439f-8e17-1f3486e51cf3?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ab48efac-2d29-4d52-849f-916770785dca?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4d49949-18d7-439f-8e17-1f3486e51cf3","name":"f4d49949-18d7-439f-8e17-1f3486e51cf3","status":"Deleting","startTime":"2020-08-09T14:53:05.5297929Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ab48efac-2d29-4d52-849f-916770785dca","name":"ab48efac-2d29-4d52-849f-916770785dca","status":"Deleting","startTime":"2020-09-03T15:00:25.8535125Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -902,7 +903,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:53:37 GMT
+ - Thu, 03 Sep 2020 15:01:30 GMT
expires:
- '-1'
pragma:
@@ -934,24 +935,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4d49949-18d7-439f-8e17-1f3486e51cf3?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ab48efac-2d29-4d52-849f-916770785dca?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4d49949-18d7-439f-8e17-1f3486e51cf3","name":"f4d49949-18d7-439f-8e17-1f3486e51cf3","status":"Deleting","startTime":"2020-08-09T14:53:05.5297929Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ab48efac-2d29-4d52-849f-916770785dca","name":"ab48efac-2d29-4d52-849f-916770785dca","status":"Succeeded","startTime":"2020-09-03T15:00:25.8535125Z","endTime":"2020-09-03T15:01:33.839834Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '571'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:54:07 GMT
+ - Thu, 03 Sep 2020 15:02:02 GMT
expires:
- '-1'
pragma:
@@ -983,61 +984,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4d49949-18d7-439f-8e17-1f3486e51cf3?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f4d49949-18d7-439f-8e17-1f3486e51cf3","name":"f4d49949-18d7-439f-8e17-1f3486e51cf3","status":"Succeeded","startTime":"2020-08-09T14:53:05.5297929Z","endTime":"2020-08-09T14:54:12.2046421Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '572'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 14:54:38 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -1051,7 +1003,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:57:59 GMT
+ - Thu, 03 Sep 2020 15:05:23 GMT
expires:
- '-1'
pragma:
@@ -1077,12 +1029,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1090,17 +1042,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7d23a34d-7d72-49b1-8b04-6f79614511de?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/65cc3974-1aef-4069-a4f6-24305f21b551?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:58:12 GMT
+ - Thu, 03 Sep 2020 15:05:35 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7d23a34d-7d72-49b1-8b04-6f79614511de?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/65cc3974-1aef-4069-a4f6-24305f21b551?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1112,7 +1064,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14998'
+ - '14999'
x-powered-by:
- ASP.NET
status:
@@ -1128,24 +1080,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7d23a34d-7d72-49b1-8b04-6f79614511de?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/65cc3974-1aef-4069-a4f6-24305f21b551?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7d23a34d-7d72-49b1-8b04-6f79614511de","name":"7d23a34d-7d72-49b1-8b04-6f79614511de","status":"Succeeded","startTime":"2020-08-09T14:58:12.6074109Z","endTime":"2020-08-09T14:58:12.9511623Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/65cc3974-1aef-4069-a4f6-24305f21b551","name":"65cc3974-1aef-4069-a4f6-24305f21b551","status":"Succeeded","startTime":"2020-09-03T15:05:35.788879Z","endTime":"2020-09-03T15:05:35.9763947Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '544'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:58:44 GMT
+ - Thu, 03 Sep 2020 15:06:07 GMT
expires:
- '-1'
pragma:
@@ -1179,12 +1131,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1192,7 +1144,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:58:55 GMT
+ - Thu, 03 Sep 2020 15:06:17 GMT
expires:
- '-1'
pragma:
@@ -1202,7 +1154,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14997'
+ - '14998'
status:
code: 204
message: No Content
@@ -1218,12 +1170,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1231,7 +1183,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:59:06 GMT
+ - Thu, 03 Sep 2020 15:06:28 GMT
expires:
- '-1'
pragma:
@@ -1241,7 +1193,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14996'
+ - '14997'
status:
code: 204
message: No Content
@@ -1257,12 +1209,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1270,7 +1222,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:59:17 GMT
+ - Thu, 03 Sep 2020 15:06:38 GMT
expires:
- '-1'
pragma:
@@ -1280,7 +1232,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14995'
+ - '14996'
status:
code: 204
message: No Content
@@ -1296,12 +1248,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1309,7 +1261,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 14:59:28 GMT
+ - Thu, 03 Sep 2020 15:06:48 GMT
expires:
- '-1'
pragma:
@@ -1319,7 +1271,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14994'
+ - '14995'
status:
code: 204
message: No Content
@@ -1333,12 +1285,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -1352,7 +1304,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 14:59:39 GMT
+ - Thu, 03 Sep 2020 15:06:58 GMT
expires:
- '-1'
pragma:
@@ -1378,12 +1330,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1391,17 +1343,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cba7b13f-e9b1-4ac3-99ee-29dfa1844575?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3ac1df1f-2af1-4b74-b8f5-e61a12638a3b?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 14:59:40 GMT
+ - Thu, 03 Sep 2020 15:07:00 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cba7b13f-e9b1-4ac3-99ee-29dfa1844575?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3ac1df1f-2af1-4b74-b8f5-e61a12638a3b?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1413,7 +1365,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14993'
+ - '14994'
x-powered-by:
- ASP.NET
status:
@@ -1429,13 +1381,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cba7b13f-e9b1-4ac3-99ee-29dfa1844575?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3ac1df1f-2af1-4b74-b8f5-e61a12638a3b?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cba7b13f-e9b1-4ac3-99ee-29dfa1844575","name":"cba7b13f-e9b1-4ac3-99ee-29dfa1844575","status":"Succeeded","startTime":"2020-08-09T14:59:41.0906755Z","endTime":"2020-08-09T14:59:41.1843628Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/3ac1df1f-2af1-4b74-b8f5-e61a12638a3b","name":"3ac1df1f-2af1-4b74-b8f5-e61a12638a3b","status":"Succeeded","startTime":"2020-09-03T15:07:00.5920606Z","endTime":"2020-09-03T15:07:00.7013979Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1446,7 +1398,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:00:12 GMT
+ - Thu, 03 Sep 2020 15:07:31 GMT
expires:
- '-1'
pragma:
@@ -1478,12 +1430,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -1497,7 +1449,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:00:14 GMT
+ - Thu, 03 Sep 2020 15:07:33 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml
index 86f0fb9d72e7..1c26968edbe8 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,30 +13,30 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T15%3A00%3A24.4784119Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T14%3A35%3A25.1371615Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b14f076-4b22-4cef-b39f-d66142b4600e?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/698969db-27c4-4e4e-8f07-b8656532eb1f?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '347'
+ - '348'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:00:25 GMT
+ - Wed, 02 Sep 2020 14:35:26 GMT
etag:
- - W/"datetime'2020-08-09T15%3A00%3A24.4784119Z'"
+ - W/"datetime'2020-09-02T14%3A35%3A25.1371615Z'"
expires:
- '-1'
pragma:
@@ -50,7 +50,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b14f076-4b22-4cef-b39f-d66142b4600e?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/698969db-27c4-4e4e-8f07-b8656532eb1f?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4b14f076-4b22-4cef-b39f-d66142b4600e","name":"4b14f076-4b22-4cef-b39f-d66142b4600e","status":"Succeeded","startTime":"2020-08-09T15:00:24.4126822Z","endTime":"2020-08-09T15:00:24.5532623Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/698969db-27c4-4e4e-8f07-b8656532eb1f","name":"698969db-27c4-4e4e-8f07-b8656532eb1f","status":"Succeeded","startTime":"2020-09-02T14:35:25.0719022Z","endTime":"2020-09-02T14:35:25.2125432Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:00:57 GMT
+ - Wed, 02 Sep 2020 14:35:58 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T15%3A00%3A24.5484631Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-02T14%3A35%3A25.2072109Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:00:58 GMT
+ - Wed, 02 Sep 2020 14:35:58 GMT
etag:
- - W/"datetime'2020-08-09T15%3A00%3A24.5484631Z'"
+ - W/"datetime'2020-09-02T14%3A35%3A25.2072109Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A01%3A00.5277561Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A36%3A00.8394698Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b70c480c-9ff0-4d70-b1ab-6261824503f1?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92a20251-8be3-4493-a339-8a65376bbb40?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:01:00 GMT
+ - Wed, 02 Sep 2020 14:36:01 GMT
etag:
- - W/"datetime'2020-08-09T15%3A01%3A00.5277561Z'"
+ - W/"datetime'2020-09-02T14%3A36%3A00.8394698Z'"
expires:
- '-1'
pragma:
@@ -210,7 +210,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
x-powered-by:
- ASP.NET
status:
@@ -226,13 +226,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b70c480c-9ff0-4d70-b1ab-6261824503f1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92a20251-8be3-4493-a339-8a65376bbb40?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b70c480c-9ff0-4d70-b1ab-6261824503f1","name":"b70c480c-9ff0-4d70-b1ab-6261824503f1","status":"Succeeded","startTime":"2020-08-09T15:01:00.4919373Z","endTime":"2020-08-09T15:01:00.7738812Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/92a20251-8be3-4493-a339-8a65376bbb40","name":"92a20251-8be3-4493-a339-8a65376bbb40","status":"Succeeded","startTime":"2020-09-02T14:36:00.7612358Z","endTime":"2020-09-02T14:36:01.0894636Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -243,7 +243,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:01:33 GMT
+ - Wed, 02 Sep 2020 14:36:33 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A01%3A00.7679307Z''\"","location":"westus2","properties":{"poolId":"58e6e581-a83f-749c-d792-2003b1880fb8","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A36%3A01.0896469Z''\"","location":"westus2stage","properties":{"poolId":"3fde7a62-cd11-56c0-8772-2d8870dfafe1","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:01:34 GMT
+ - Wed, 02 Sep 2020 14:36:33 GMT
etag:
- - W/"datetime'2020-08-09T15%3A01%3A00.7679307Z'"
+ - W/"datetime'2020-09-02T14%3A36%3A01.0896469Z'"
expires:
- '-1'
pragma:
@@ -317,9 +317,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +329,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '371'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A01%3A47.0637627Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A36%3A46.4297863Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '765'
+ - '789'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:01:47 GMT
+ - Wed, 02 Sep 2020 14:36:46 GMT
etag:
- - W/"datetime'2020-08-09T15%3A01%3A47.0637627Z'"
+ - W/"datetime'2020-09-02T14%3A36%3A46.4297863Z'"
expires:
- '-1'
pragma:
@@ -369,7 +370,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1196'
x-powered-by:
- ASP.NET
status:
@@ -385,62 +386,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2","name":"b9e56b1f-689d-4308-83f4-52b1579117b2","status":"Creating","startTime":"2020-08-09T15:01:47.0027824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '561'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 15:02:19 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2","name":"b9e56b1f-689d-4308-83f4-52b1579117b2","status":"Creating","startTime":"2020-08-09T15:01:47.0027824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622","name":"ea31de7a-4fd8-406a-bd48-d2d2313a3622","status":"Creating","startTime":"2020-09-02T14:36:46.3908836Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -451,7 +403,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:02:50 GMT
+ - Wed, 02 Sep 2020 14:37:18 GMT
expires:
- '-1'
pragma:
@@ -483,13 +435,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2","name":"b9e56b1f-689d-4308-83f4-52b1579117b2","status":"Creating","startTime":"2020-08-09T15:01:47.0027824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622","name":"ea31de7a-4fd8-406a-bd48-d2d2313a3622","status":"Creating","startTime":"2020-09-02T14:36:46.3908836Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -500,7 +452,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:03:20 GMT
+ - Wed, 02 Sep 2020 14:37:49 GMT
expires:
- '-1'
pragma:
@@ -532,13 +484,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2","name":"b9e56b1f-689d-4308-83f4-52b1579117b2","status":"Creating","startTime":"2020-08-09T15:01:47.0027824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622","name":"ea31de7a-4fd8-406a-bd48-d2d2313a3622","status":"Creating","startTime":"2020-09-02T14:36:46.3908836Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -549,7 +501,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:03:52 GMT
+ - Wed, 02 Sep 2020 14:38:19 GMT
expires:
- '-1'
pragma:
@@ -581,13 +533,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2","name":"b9e56b1f-689d-4308-83f4-52b1579117b2","status":"Creating","startTime":"2020-08-09T15:01:47.0027824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622","name":"ea31de7a-4fd8-406a-bd48-d2d2313a3622","status":"Creating","startTime":"2020-09-02T14:36:46.3908836Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -598,7 +550,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:04:22 GMT
+ - Wed, 02 Sep 2020 14:38:49 GMT
expires:
- '-1'
pragma:
@@ -630,13 +582,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2","name":"b9e56b1f-689d-4308-83f4-52b1579117b2","status":"Creating","startTime":"2020-08-09T15:01:47.0027824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622","name":"ea31de7a-4fd8-406a-bd48-d2d2313a3622","status":"Creating","startTime":"2020-09-02T14:36:46.3908836Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -647,7 +599,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:04:52 GMT
+ - Wed, 02 Sep 2020 14:39:19 GMT
expires:
- '-1'
pragma:
@@ -679,13 +631,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9e56b1f-689d-4308-83f4-52b1579117b2","name":"b9e56b1f-689d-4308-83f4-52b1579117b2","status":"Succeeded","startTime":"2020-08-09T15:01:47.0027824Z","endTime":"2020-08-09T15:04:54.7959362Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ea31de7a-4fd8-406a-bd48-d2d2313a3622","name":"ea31de7a-4fd8-406a-bd48-d2d2313a3622","status":"Succeeded","startTime":"2020-09-02T14:36:46.3908836Z","endTime":"2020-09-02T14:39:49.3729683Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -696,7 +648,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:05:23 GMT
+ - Wed, 02 Sep 2020 14:39:50 GMT
expires:
- '-1'
pragma:
@@ -728,26 +680,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A04%3A54.7849436Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"173d0f4f-eae3-1f9d-c37b-ed865bfd602a","fileSystemId":"173d0f4f-eae3-1f9d-c37b-ed865bfd602a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"173d0f4f-eae3-1f9d-c37b-ed865bfd602a","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_31ef87da","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A39%3A49.3659049Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"d31413a2-3c43-4763-9709-8d86aa81a505","fileSystemId":"d31413a2-3c43-4763-9709-8d86aa81a505","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"d31413a2-3c43-4763-9709-8d86aa81a505","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_bf38dad2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:05:24 GMT
+ - Wed, 02 Sep 2020 14:39:50 GMT
etag:
- - W/"datetime'2020-08-09T15%3A04%3A54.7849436Z'"
+ - W/"datetime'2020-09-02T14%3A39%3A49.3659049Z'"
expires:
- '-1'
pragma:
@@ -770,9 +722,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-2",
+ body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-2",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -781,34 +734,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '371'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-08-09T15%3A05%3A32.1062866Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-09-02T14%3A40%3A01.0841624Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/143bec0f-8443-4907-be44-3a9b885cb399?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bcca765c-49ce-4f7b-bc65-93d57e97388d?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '765'
+ - '789'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:05:32 GMT
+ - Wed, 02 Sep 2020 14:40:01 GMT
etag:
- - W/"datetime'2020-08-09T15%3A05%3A32.1062866Z'"
+ - W/"datetime'2020-09-02T14%3A40%3A01.0841624Z'"
expires:
- '-1'
pragma:
@@ -838,13 +791,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/143bec0f-8443-4907-be44-3a9b885cb399?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bcca765c-49ce-4f7b-bc65-93d57e97388d?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/143bec0f-8443-4907-be44-3a9b885cb399","name":"143bec0f-8443-4907-be44-3a9b885cb399","status":"Succeeded","startTime":"2020-08-09T15:05:31.9877648Z","endTime":"2020-08-09T15:05:52.8215876Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bcca765c-49ce-4f7b-bc65-93d57e97388d","name":"bcca765c-49ce-4f7b-bc65-93d57e97388d","status":"Succeeded","startTime":"2020-09-02T14:40:01.0226965Z","endTime":"2020-09-02T14:40:32.0968037Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -855,7 +808,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:06:04 GMT
+ - Wed, 02 Sep 2020 14:40:33 GMT
expires:
- '-1'
pragma:
@@ -887,26 +840,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-08-09T15%3A05%3A52.8124184Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"7b00fc21-7fdd-0bf2-49c9-7954a3e5905a","fileSystemId":"7b00fc21-7fdd-0bf2-49c9-7954a3e5905a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"7b00fc21-7fdd-0bf2-49c9-7954a3e5905a","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_31ef87da","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-09-02T14%3A40%3A32.0960169Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"f3528c19-07d0-3456-3da6-3bc5764fe7ee","fileSystemId":"f3528c19-07d0-3456-3da6-3bc5764fe7ee","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"f3528c19-07d0-3456-3da6-3bc5764fe7ee","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_bf38dad2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:06:05 GMT
+ - Wed, 02 Sep 2020 14:40:33 GMT
etag:
- - W/"datetime'2020-08-09T15%3A05%3A52.8124184Z'"
+ - W/"datetime'2020-09-02T14%3A40%3A32.0960169Z'"
expires:
- '-1'
pragma:
@@ -938,26 +891,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2020-06-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A04%3A54.7849436Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"173d0f4f-eae3-1f9d-c37b-ed865bfd602a","fileSystemId":"173d0f4f-eae3-1f9d-c37b-ed865bfd602a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"173d0f4f-eae3-1f9d-c37b-ed865bfd602a","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_31ef87da","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-08-09T15%3A05%3A52.8124184Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"7b00fc21-7fdd-0bf2-49c9-7954a3e5905a","fileSystemId":"7b00fc21-7fdd-0bf2-49c9-7954a3e5905a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"7b00fc21-7fdd-0bf2-49c9-7954a3e5905a","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_31ef87da","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-02T14%3A39%3A49.3659049Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"d31413a2-3c43-4763-9709-8d86aa81a505","fileSystemId":"d31413a2-3c43-4763-9709-8d86aa81a505","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"d31413a2-3c43-4763-9709-8d86aa81a505","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_bf38dad2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2020-09-02T14%3A40%3A32.0960169Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"f3528c19-07d0-3456-3da6-3bc5764fe7ee","fileSystemId":"f3528c19-07d0-3456-3da6-3bc5764fe7ee","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"f3528c19-07d0-3456-3da6-3bc5764fe7ee","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_bf38dad2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}]}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '2779'
+ - '3185'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:06:06 GMT
+ - Wed, 02 Sep 2020 14:40:33 GMT
expires:
- '-1'
pragma:
@@ -991,12 +944,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1004,17 +957,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba807fd8-e965-47fa-a637-d27cdb673c61?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d68760e5-5542-46e7-bd7c-0cc21fa2bd53?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 15:06:07 GMT
+ - Wed, 02 Sep 2020 14:40:34 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba807fd8-e965-47fa-a637-d27cdb673c61?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d68760e5-5542-46e7-bd7c-0cc21fa2bd53?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1042,13 +995,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba807fd8-e965-47fa-a637-d27cdb673c61?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d68760e5-5542-46e7-bd7c-0cc21fa2bd53?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ba807fd8-e965-47fa-a637-d27cdb673c61","name":"ba807fd8-e965-47fa-a637-d27cdb673c61","status":"Succeeded","startTime":"2020-08-09T15:06:07.7130126Z","endTime":"2020-08-09T15:06:16.1505007Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d68760e5-5542-46e7-bd7c-0cc21fa2bd53","name":"d68760e5-5542-46e7-bd7c-0cc21fa2bd53","status":"Succeeded","startTime":"2020-09-02T14:40:35.3939347Z","endTime":"2020-09-02T14:40:42.5195803Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1059,7 +1012,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:06:39 GMT
+ - Wed, 02 Sep 2020 14:41:06 GMT
expires:
- '-1'
pragma:
@@ -1093,12 +1046,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
string: ''
@@ -1106,17 +1059,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a88574b9-7a19-451d-b56c-786adcab27e4?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 15:06:41 GMT
+ - Wed, 02 Sep 2020 14:41:07 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a88574b9-7a19-451d-b56c-786adcab27e4?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1144,62 +1097,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541","name":"f2ce7133-c887-4d34-a59c-e18ac3fd5541","status":"Deleting","startTime":"2020-08-09T15:06:41.0026135Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '561'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 15:07:12 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a88574b9-7a19-451d-b56c-786adcab27e4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541","name":"f2ce7133-c887-4d34-a59c-e18ac3fd5541","status":"Deleting","startTime":"2020-08-09T15:06:41.0026135Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a88574b9-7a19-451d-b56c-786adcab27e4","name":"a88574b9-7a19-451d-b56c-786adcab27e4","status":"Deleting","startTime":"2020-09-02T14:41:07.4373958Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1210,7 +1114,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:07:43 GMT
+ - Wed, 02 Sep 2020 14:41:38 GMT
expires:
- '-1'
pragma:
@@ -1242,13 +1146,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a88574b9-7a19-451d-b56c-786adcab27e4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541","name":"f2ce7133-c887-4d34-a59c-e18ac3fd5541","status":"Deleting","startTime":"2020-08-09T15:06:41.0026135Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a88574b9-7a19-451d-b56c-786adcab27e4","name":"a88574b9-7a19-451d-b56c-786adcab27e4","status":"Deleting","startTime":"2020-09-02T14:41:07.4373958Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1259,7 +1163,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:08:13 GMT
+ - Wed, 02 Sep 2020 14:42:08 GMT
expires:
- '-1'
pragma:
@@ -1291,13 +1195,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a88574b9-7a19-451d-b56c-786adcab27e4?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2ce7133-c887-4d34-a59c-e18ac3fd5541","name":"f2ce7133-c887-4d34-a59c-e18ac3fd5541","status":"Succeeded","startTime":"2020-08-09T15:06:41.0026135Z","endTime":"2020-08-09T15:08:28.522108Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a88574b9-7a19-451d-b56c-786adcab27e4","name":"a88574b9-7a19-451d-b56c-786adcab27e4","status":"Succeeded","startTime":"2020-09-02T14:41:07.4373958Z","endTime":"2020-09-02T14:42:26.885407Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1308,7 +1212,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:08:44 GMT
+ - Wed, 02 Sep 2020 14:42:38 GMT
expires:
- '-1'
pragma:
@@ -1340,12 +1244,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -1359,7 +1263,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:12:06 GMT
+ - Wed, 02 Sep 2020 14:46:00 GMT
expires:
- '-1'
pragma:
@@ -1383,12 +1287,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -1402,7 +1306,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:15:28 GMT
+ - Wed, 02 Sep 2020 14:49:21 GMT
expires:
- '-1'
pragma:
@@ -1428,12 +1332,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1441,17 +1345,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a56132d2-cee4-4d94-bcd5-3fad390026c5?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a1bde1e9-111c-43a3-9450-659f2cfaf566?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 15:15:40 GMT
+ - Wed, 02 Sep 2020 14:49:33 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a56132d2-cee4-4d94-bcd5-3fad390026c5?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a1bde1e9-111c-43a3-9450-659f2cfaf566?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1479,13 +1383,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a56132d2-cee4-4d94-bcd5-3fad390026c5?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a1bde1e9-111c-43a3-9450-659f2cfaf566?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a56132d2-cee4-4d94-bcd5-3fad390026c5","name":"a56132d2-cee4-4d94-bcd5-3fad390026c5","status":"Succeeded","startTime":"2020-08-09T15:15:41.0471632Z","endTime":"2020-08-09T15:15:41.3286552Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a1bde1e9-111c-43a3-9450-659f2cfaf566","name":"a1bde1e9-111c-43a3-9450-659f2cfaf566","status":"Succeeded","startTime":"2020-09-02T14:49:33.4933487Z","endTime":"2020-09-02T14:49:33.7433519Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1496,7 +1400,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:16:12 GMT
+ - Wed, 02 Sep 2020 14:50:04 GMT
expires:
- '-1'
pragma:
@@ -1530,12 +1434,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1543,7 +1447,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:16:24 GMT
+ - Wed, 02 Sep 2020 14:50:14 GMT
expires:
- '-1'
pragma:
@@ -1569,12 +1473,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1582,7 +1486,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:16:34 GMT
+ - Wed, 02 Sep 2020 14:50:24 GMT
expires:
- '-1'
pragma:
@@ -1608,12 +1512,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1621,7 +1525,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:16:45 GMT
+ - Wed, 02 Sep 2020 14:50:34 GMT
expires:
- '-1'
pragma:
@@ -1647,12 +1551,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1660,7 +1564,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:16:56 GMT
+ - Wed, 02 Sep 2020 14:50:44 GMT
expires:
- '-1'
pragma:
@@ -1684,12 +1588,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -1703,7 +1607,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:17:06 GMT
+ - Wed, 02 Sep 2020 14:50:54 GMT
expires:
- '-1'
pragma:
@@ -1729,12 +1633,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1742,17 +1646,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09a0472e-da49-4154-b696-d2c8aad61ae9?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8ec00a27-cfd3-4e88-9732-7f0ff0355726?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 15:17:08 GMT
+ - Wed, 02 Sep 2020 14:50:56 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09a0472e-da49-4154-b696-d2c8aad61ae9?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8ec00a27-cfd3-4e88-9732-7f0ff0355726?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1780,13 +1684,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09a0472e-da49-4154-b696-d2c8aad61ae9?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8ec00a27-cfd3-4e88-9732-7f0ff0355726?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/09a0472e-da49-4154-b696-d2c8aad61ae9","name":"09a0472e-da49-4154-b696-d2c8aad61ae9","status":"Succeeded","startTime":"2020-08-09T15:17:09.5195451Z","endTime":"2020-08-09T15:17:09.6601674Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/8ec00a27-cfd3-4e88-9732-7f0ff0355726","name":"8ec00a27-cfd3-4e88-9732-7f0ff0355726","status":"Succeeded","startTime":"2020-09-02T14:50:57.1116329Z","endTime":"2020-09-02T14:50:57.2209516Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1797,7 +1701,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:17:41 GMT
+ - Wed, 02 Sep 2020 14:51:28 GMT
expires:
- '-1'
pragma:
@@ -1829,12 +1733,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -1848,7 +1752,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:17:43 GMT
+ - Wed, 02 Sep 2020 14:51:31 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml
index 690da3f494ec..e369828e88aa 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -13,30 +13,30 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T15%3A17%3A52.262183Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-03T13%3A05%3A14.3994677Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54f6947d-e1c8-468b-b989-1c42e43bf4c3?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f4dd934d-adda-41fd-90bb-641b85099878?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '346'
+ - '347'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:17:53 GMT
+ - Thu, 03 Sep 2020 13:05:15 GMT
etag:
- - W/"datetime'2020-08-09T15%3A17%3A52.262183Z'"
+ - W/"datetime'2020-09-03T13%3A05%3A14.3994677Z'"
expires:
- '-1'
pragma:
@@ -66,13 +66,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54f6947d-e1c8-468b-b989-1c42e43bf4c3?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f4dd934d-adda-41fd-90bb-641b85099878?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/54f6947d-e1c8-468b-b989-1c42e43bf4c3","name":"54f6947d-e1c8-468b-b989-1c42e43bf4c3","status":"Succeeded","startTime":"2020-08-09T15:17:52.2038878Z","endTime":"2020-08-09T15:17:52.4851375Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f4dd934d-adda-41fd-90bb-641b85099878","name":"f4dd934d-adda-41fd-90bb-641b85099878","status":"Succeeded","startTime":"2020-09-03T13:05:14.3352533Z","endTime":"2020-09-03T13:05:14.4602619Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -83,7 +83,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:18:25 GMT
+ - Thu, 03 Sep 2020 13:05:46 GMT
expires:
- '-1'
pragma:
@@ -115,13 +115,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T15%3A17%3A52.4873484Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-03T13%3A05%3A14.4575081Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -132,9 +132,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:18:25 GMT
+ - Thu, 03 Sep 2020 13:05:46 GMT
etag:
- - W/"datetime'2020-08-09T15%3A17%3A52.4873484Z'"
+ - W/"datetime'2020-09-03T13%3A05%3A14.4575081Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '108'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A18%3A28.5727176Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T13%3A05%3A49.6982971Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df8b08d2-2b5e-42af-890d-a3c3a057e481?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a1d71ff1-f209-4f31-8e12-837bfc7ac099?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '535'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:18:29 GMT
+ - Thu, 03 Sep 2020 13:05:50 GMT
etag:
- - W/"datetime'2020-08-09T15%3A18%3A28.5727176Z'"
+ - W/"datetime'2020-09-03T13%3A05%3A49.6982971Z'"
expires:
- '-1'
pragma:
@@ -226,13 +226,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df8b08d2-2b5e-42af-890d-a3c3a057e481?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a1d71ff1-f209-4f31-8e12-837bfc7ac099?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/df8b08d2-2b5e-42af-890d-a3c3a057e481","name":"df8b08d2-2b5e-42af-890d-a3c3a057e481","status":"Succeeded","startTime":"2020-08-09T15:18:28.4409645Z","endTime":"2020-08-09T15:18:30.8317281Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a1d71ff1-f209-4f31-8e12-837bfc7ac099","name":"a1d71ff1-f209-4f31-8e12-837bfc7ac099","status":"Succeeded","startTime":"2020-09-03T13:05:49.6313339Z","endTime":"2020-09-03T13:05:49.9125965Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -243,7 +243,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:19:01 GMT
+ - Thu, 03 Sep 2020 13:06:21 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A18%3A30.8293671Z''\"","location":"westus2","properties":{"poolId":"87ee9da7-0f95-0846-f664-20ccdf5aaaa1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T13%3A05%3A49.9054428Z''\"","location":"westus2stage","properties":{"poolId":"b15eaaaa-f40d-3184-d111-7b85864d6db2","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '588'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:19:02 GMT
+ - Thu, 03 Sep 2020 13:06:22 GMT
etag:
- - W/"datetime'2020-08-09T15%3A18%3A30.8293671Z'"
+ - W/"datetime'2020-09-03T13%3A05%3A49.9054428Z'"
expires:
- '-1'
pragma:
@@ -317,9 +317,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +329,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '371'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A19%3A16.7549281Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T13%3A06%3A35.2373305Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '765'
+ - '789'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:19:17 GMT
+ - Thu, 03 Sep 2020 13:06:36 GMT
etag:
- - W/"datetime'2020-08-09T15%3A19%3A16.7549281Z'"
+ - W/"datetime'2020-09-03T13%3A06%3A35.2373305Z'"
expires:
- '-1'
pragma:
@@ -385,13 +386,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30","name":"c2b1c126-b6c5-4937-baaa-de6314336a30","status":"Creating","startTime":"2020-08-09T15:19:16.6944824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140","name":"91966c4c-20d4-4317-8541-878d3274a140","status":"Creating","startTime":"2020-09-03T13:06:35.1979899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -402,7 +403,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:19:49 GMT
+ - Thu, 03 Sep 2020 13:07:07 GMT
expires:
- '-1'
pragma:
@@ -434,13 +435,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30","name":"c2b1c126-b6c5-4937-baaa-de6314336a30","status":"Creating","startTime":"2020-08-09T15:19:16.6944824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140","name":"91966c4c-20d4-4317-8541-878d3274a140","status":"Creating","startTime":"2020-09-03T13:06:35.1979899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -451,7 +452,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:20:19 GMT
+ - Thu, 03 Sep 2020 13:07:37 GMT
expires:
- '-1'
pragma:
@@ -483,13 +484,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30","name":"c2b1c126-b6c5-4937-baaa-de6314336a30","status":"Creating","startTime":"2020-08-09T15:19:16.6944824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140","name":"91966c4c-20d4-4317-8541-878d3274a140","status":"Creating","startTime":"2020-09-03T13:06:35.1979899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -500,7 +501,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:20:49 GMT
+ - Thu, 03 Sep 2020 13:08:08 GMT
expires:
- '-1'
pragma:
@@ -532,13 +533,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30","name":"c2b1c126-b6c5-4937-baaa-de6314336a30","status":"Creating","startTime":"2020-08-09T15:19:16.6944824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140","name":"91966c4c-20d4-4317-8541-878d3274a140","status":"Creating","startTime":"2020-09-03T13:06:35.1979899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -549,7 +550,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:21:20 GMT
+ - Thu, 03 Sep 2020 13:08:38 GMT
expires:
- '-1'
pragma:
@@ -581,13 +582,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30","name":"c2b1c126-b6c5-4937-baaa-de6314336a30","status":"Creating","startTime":"2020-08-09T15:19:16.6944824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140","name":"91966c4c-20d4-4317-8541-878d3274a140","status":"Creating","startTime":"2020-09-03T13:06:35.1979899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -598,7 +599,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:21:51 GMT
+ - Thu, 03 Sep 2020 13:09:08 GMT
expires:
- '-1'
pragma:
@@ -630,13 +631,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30","name":"c2b1c126-b6c5-4937-baaa-de6314336a30","status":"Creating","startTime":"2020-08-09T15:19:16.6944824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140","name":"91966c4c-20d4-4317-8541-878d3274a140","status":"Creating","startTime":"2020-09-03T13:06:35.1979899Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -647,7 +648,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:22:22 GMT
+ - Thu, 03 Sep 2020 13:09:38 GMT
expires:
- '-1'
pragma:
@@ -679,62 +680,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30","name":"c2b1c126-b6c5-4937-baaa-de6314336a30","status":"Creating","startTime":"2020-08-09T15:19:16.6944824Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '561'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 15:22:52 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c2b1c126-b6c5-4937-baaa-de6314336a30","name":"c2b1c126-b6c5-4937-baaa-de6314336a30","status":"Succeeded","startTime":"2020-08-09T15:19:16.6944824Z","endTime":"2020-08-09T15:22:54.4583715Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/91966c4c-20d4-4317-8541-878d3274a140","name":"91966c4c-20d4-4317-8541-878d3274a140","status":"Succeeded","startTime":"2020-09-03T13:06:35.1979899Z","endTime":"2020-09-03T13:09:47.4842907Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -745,7 +697,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:23:23 GMT
+ - Thu, 03 Sep 2020 13:10:08 GMT
expires:
- '-1'
pragma:
@@ -777,26 +729,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A22%3A54.4569988Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"4e6273fd-c851-11d1-a6de-31cfd82e9eb5","fileSystemId":"4e6273fd-c851-11d1-a6de-31cfd82e9eb5","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"4e6273fd-c851-11d1-a6de-31cfd82e9eb5","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_3f181456","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T13%3A09%3A47.4817045Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"b1af089b-a3a0-3d0f-4cf1-525e36d642fe","fileSystemId":"b1af089b-a3a0-3d0f-4cf1-525e36d642fe","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"b1af089b-a3a0-3d0f-4cf1-525e36d642fe","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_b133e809","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:23:23 GMT
+ - Thu, 03 Sep 2020 13:10:09 GMT
etag:
- - W/"datetime'2020-08-09T15%3A22%3A54.4569988Z'"
+ - W/"datetime'2020-09-03T13%3A09%3A47.4817045Z'"
expires:
- '-1'
pragma:
@@ -832,28 +784,28 @@ interactions:
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PATCH
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A23%3A27.0658279Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"4e6273fd-c851-11d1-a6de-31cfd82e9eb5","fileSystemId":"4e6273fd-c851-11d1-a6de-31cfd82e9eb5","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"4e6273fd-c851-11d1-a6de-31cfd82e9eb5","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"usedBytes":0,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_3f181456","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-03T13%3A10%3A11.9059908Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"b1af089b-a3a0-3d0f-4cf1-525e36d642fe","fileSystemId":"b1af089b-a3a0-3d0f-4cf1-525e36d642fe","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"b1af089b-a3a0-3d0f-4cf1-525e36d642fe","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_b133e809","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '1586'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:23:29 GMT
+ - Thu, 03 Sep 2020 13:10:14 GMT
etag:
- - W/"datetime'2020-08-09T15%3A23%3A27.0658279Z'"
+ - W/"datetime'2020-09-03T13%3A10%3A11.9059908Z'"
expires:
- '-1'
pragma:
@@ -889,12 +841,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: ''
@@ -902,17 +854,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/856d7dfa-dbc4-4847-9790-2d4f149f6955?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 15:23:30 GMT
+ - Thu, 03 Sep 2020 13:10:15 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/856d7dfa-dbc4-4847-9790-2d4f149f6955?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -940,111 +892,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1","name":"fd286867-b7e0-40c3-8545-936e423151f1","status":"Deleting","startTime":"2020-08-09T15:23:31.1929825Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '561'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 15:24:03 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1","name":"fd286867-b7e0-40c3-8545-936e423151f1","status":"Deleting","startTime":"2020-08-09T15:23:31.1929825Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '561'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 15:24:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/856d7dfa-dbc4-4847-9790-2d4f149f6955?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1","name":"fd286867-b7e0-40c3-8545-936e423151f1","status":"Deleting","startTime":"2020-08-09T15:23:31.1929825Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/856d7dfa-dbc4-4847-9790-2d4f149f6955","name":"856d7dfa-dbc4-4847-9790-2d4f149f6955","status":"Deleting","startTime":"2020-09-03T13:10:15.8840967Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1055,7 +909,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:25:04 GMT
+ - Thu, 03 Sep 2020 13:10:46 GMT
expires:
- '-1'
pragma:
@@ -1087,13 +941,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/856d7dfa-dbc4-4847-9790-2d4f149f6955?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd286867-b7e0-40c3-8545-936e423151f1","name":"fd286867-b7e0-40c3-8545-936e423151f1","status":"Succeeded","startTime":"2020-08-09T15:23:31.1929825Z","endTime":"2020-08-09T15:25:26.4577248Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/856d7dfa-dbc4-4847-9790-2d4f149f6955","name":"856d7dfa-dbc4-4847-9790-2d4f149f6955","status":"Succeeded","startTime":"2020-09-03T13:10:15.8840967Z","endTime":"2020-09-03T13:11:14.7201904Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1104,7 +958,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:25:34 GMT
+ - Thu, 03 Sep 2020 13:11:17 GMT
expires:
- '-1'
pragma:
@@ -1136,12 +990,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -1155,7 +1009,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:28:57 GMT
+ - Thu, 03 Sep 2020 13:14:38 GMT
expires:
- '-1'
pragma:
@@ -1181,12 +1035,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1194,17 +1048,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a59889ff-b165-4bb2-929d-e07466ddbbad?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e8e1b248-92a7-4193-8c55-2294dfee7d48?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 15:29:09 GMT
+ - Thu, 03 Sep 2020 13:14:49 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a59889ff-b165-4bb2-929d-e07466ddbbad?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e8e1b248-92a7-4193-8c55-2294dfee7d48?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1232,13 +1086,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a59889ff-b165-4bb2-929d-e07466ddbbad?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e8e1b248-92a7-4193-8c55-2294dfee7d48?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a59889ff-b165-4bb2-929d-e07466ddbbad","name":"a59889ff-b165-4bb2-929d-e07466ddbbad","status":"Succeeded","startTime":"2020-08-09T15:29:09.5750364Z","endTime":"2020-08-09T15:29:09.8718727Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/e8e1b248-92a7-4193-8c55-2294dfee7d48","name":"e8e1b248-92a7-4193-8c55-2294dfee7d48","status":"Succeeded","startTime":"2020-09-03T13:14:50.4945931Z","endTime":"2020-09-03T13:14:50.7289438Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1249,7 +1103,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:29:40 GMT
+ - Thu, 03 Sep 2020 13:15:21 GMT
expires:
- '-1'
pragma:
@@ -1283,12 +1137,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1296,7 +1150,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:29:51 GMT
+ - Thu, 03 Sep 2020 13:15:31 GMT
expires:
- '-1'
pragma:
@@ -1322,12 +1176,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1335,7 +1189,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:30:02 GMT
+ - Thu, 03 Sep 2020 13:15:41 GMT
expires:
- '-1'
pragma:
@@ -1361,12 +1215,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1374,7 +1228,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:30:13 GMT
+ - Thu, 03 Sep 2020 13:15:52 GMT
expires:
- '-1'
pragma:
@@ -1400,12 +1254,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1413,7 +1267,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:30:24 GMT
+ - Thu, 03 Sep 2020 13:16:03 GMT
expires:
- '-1'
pragma:
@@ -1437,12 +1291,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -1456,7 +1310,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:30:35 GMT
+ - Thu, 03 Sep 2020 13:16:13 GMT
expires:
- '-1'
pragma:
@@ -1482,12 +1336,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1495,17 +1349,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9bf4347a-e76a-4115-8605-4b3b82e3d468?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cba1f3ad-4e56-4d86-a53f-1a60f65183fa?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 15:30:37 GMT
+ - Thu, 03 Sep 2020 13:16:15 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9bf4347a-e76a-4115-8605-4b3b82e3d468?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cba1f3ad-4e56-4d86-a53f-1a60f65183fa?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1533,13 +1387,13 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9bf4347a-e76a-4115-8605-4b3b82e3d468?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cba1f3ad-4e56-4d86-a53f-1a60f65183fa?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9bf4347a-e76a-4115-8605-4b3b82e3d468","name":"9bf4347a-e76a-4115-8605-4b3b82e3d468","status":"Succeeded","startTime":"2020-08-09T15:30:37.3917468Z","endTime":"2020-08-09T15:30:37.4854249Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cba1f3ad-4e56-4d86-a53f-1a60f65183fa","name":"cba1f3ad-4e56-4d86-a53f-1a60f65183fa","status":"Succeeded","startTime":"2020-09-03T13:16:15.9653739Z","endTime":"2020-09-03T13:16:16.0435617Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -1550,7 +1404,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:31:09 GMT
+ - Thu, 03 Sep 2020 13:16:47 GMT
expires:
- '-1'
pragma:
@@ -1582,12 +1436,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -1601,7 +1455,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:31:11 GMT
+ - Thu, 03 Sep 2020 13:16:49 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml
index 81dd8373dd73..a0335ce638fc 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml
@@ -1,6 +1,6 @@
interactions:
- request:
- body: '{"location": "westus2"}'
+ body: '{"location": "westus2stage"}'
headers:
Accept:
- application/json
@@ -9,34 +9,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '23'
+ - '29'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T15%3A31%3A21.3254022Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-08T12%3A41%3A02.3657995Z''\"","location":"westcentralus","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d415f628-2115-427e-a15a-8dd3099886b5?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fd646b8f-61c9-4d3c-a175-4de977ac3232?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '348'
+ - '353'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:31:22 GMT
+ - Tue, 08 Sep 2020 12:41:03 GMT
etag:
- - W/"datetime'2020-08-09T15%3A31%3A21.3254022Z'"
+ - W/"datetime'2020-09-08T12%3A41%3A02.3657995Z'"
expires:
- '-1'
pragma:
@@ -50,7 +50,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1196'
x-powered-by:
- ASP.NET
status:
@@ -66,24 +66,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d415f628-2115-427e-a15a-8dd3099886b5?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fd646b8f-61c9-4d3c-a175-4de977ac3232?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d415f628-2115-427e-a15a-8dd3099886b5","name":"d415f628-2115-427e-a15a-8dd3099886b5","status":"Succeeded","startTime":"2020-08-09T15:31:21.2138006Z","endTime":"2020-08-09T15:31:21.4325632Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fd646b8f-61c9-4d3c-a175-4de977ac3232","name":"fd646b8f-61c9-4d3c-a175-4de977ac3232","status":"Succeeded","startTime":"2020-09-08T12:41:02.1859898Z","endTime":"2020-09-08T12:41:02.4359421Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '511'
+ - '517'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:31:54 GMT
+ - Tue, 08 Sep 2020 12:41:33 GMT
expires:
- '-1'
pragma:
@@ -115,26 +115,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T15%3A31%3A21.4354831Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-08T12%3A41%3A02.4328476Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '348'
+ - '354'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:31:54 GMT
+ - Tue, 08 Sep 2020 12:41:34 GMT
etag:
- - W/"datetime'2020-08-09T15%3A31%3A21.4354831Z'"
+ - W/"datetime'2020-09-08T12%3A41%3A02.4328476Z'"
expires:
- '-1'
pragma:
@@ -157,8 +157,8 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "westus2", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '89'
+ - '114'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- - westus2
+ - westcentralus
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A31%3A58.1893413Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-08T12%3A41%3A37.6739349Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa03376e-7a63-4349-9036-55a841b6c7d8?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d0843ad1-df0a-42cc-be49-8b1783b03ba8?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '461'
+ - '541'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:31:58 GMT
+ - Tue, 08 Sep 2020 12:41:38 GMT
etag:
- - W/"datetime'2020-08-09T15%3A31%3A58.1893413Z'"
+ - W/"datetime'2020-09-08T12%3A41%3A37.6739349Z'"
expires:
- '-1'
pragma:
@@ -210,7 +210,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -226,24 +226,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa03376e-7a63-4349-9036-55a841b6c7d8?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d0843ad1-df0a-42cc-be49-8b1783b03ba8?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa03376e-7a63-4349-9036-55a841b6c7d8","name":"fa03376e-7a63-4349-9036-55a841b6c7d8","status":"Succeeded","startTime":"2020-08-09T15:31:58.1419986Z","endTime":"2020-08-09T15:31:58.3921705Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d0843ad1-df0a-42cc-be49-8b1783b03ba8","name":"d0843ad1-df0a-42cc-be49-8b1783b03ba8","status":"Succeeded","startTime":"2020-09-08T12:41:37.5738589Z","endTime":"2020-09-08T12:41:37.9488201Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '551'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:32:31 GMT
+ - Tue, 08 Sep 2020 12:42:09 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A31%3A58.3824828Z''\"","location":"westus2","properties":{"poolId":"9712c007-bcae-a64d-960b-9d79a43f0ebc","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-08T12%3A41%3A44.2736329Z''\"","location":"westcentralus","properties":{"poolId":"81706205-a1e5-d04d-4968-5bbcce001bcb","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '510'
+ - '594'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:32:31 GMT
+ - Tue, 08 Sep 2020 12:42:09 GMT
etag:
- - W/"datetime'2020-08-09T15%3A31%3A58.3824828Z'"
+ - W/"datetime'2020-09-08T12%3A41%3A44.2736329Z'"
expires:
- '-1'
pragma:
@@ -317,9 +317,10 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ body: 'b''b\''{"location": "westcentralus", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa3vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +329,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '345'
+ - '377'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A32%3A44.8244212Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-08T12%3A42%3A21.5091502Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa3vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '765'
+ - '795'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:32:45 GMT
+ - Tue, 08 Sep 2020 12:42:21 GMT
etag:
- - W/"datetime'2020-08-09T15%3A32%3A44.8244212Z'"
+ - W/"datetime'2020-09-08T12%3A42%3A21.5091502Z'"
expires:
- '-1'
pragma:
@@ -369,7 +370,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1194'
x-powered-by:
- ASP.NET
status:
@@ -385,24 +386,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe","name":"3aca31b9-f696-4d07-9d88-0760777a9cbe","status":"Creating","startTime":"2020-08-09T15:32:44.7461937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:33:17 GMT
+ - Tue, 08 Sep 2020 12:42:53 GMT
expires:
- '-1'
pragma:
@@ -434,24 +435,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe","name":"3aca31b9-f696-4d07-9d88-0760777a9cbe","status":"Creating","startTime":"2020-08-09T15:32:44.7461937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:33:48 GMT
+ - Tue, 08 Sep 2020 12:43:23 GMT
expires:
- '-1'
pragma:
@@ -483,24 +484,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe","name":"3aca31b9-f696-4d07-9d88-0760777a9cbe","status":"Creating","startTime":"2020-08-09T15:32:44.7461937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:34:18 GMT
+ - Tue, 08 Sep 2020 12:43:53 GMT
expires:
- '-1'
pragma:
@@ -532,24 +533,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe","name":"3aca31b9-f696-4d07-9d88-0760777a9cbe","status":"Creating","startTime":"2020-08-09T15:32:44.7461937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:34:49 GMT
+ - Tue, 08 Sep 2020 12:44:23 GMT
expires:
- '-1'
pragma:
@@ -581,24 +582,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe","name":"3aca31b9-f696-4d07-9d88-0760777a9cbe","status":"Creating","startTime":"2020-08-09T15:32:44.7461937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:35:20 GMT
+ - Tue, 08 Sep 2020 12:44:54 GMT
expires:
- '-1'
pragma:
@@ -630,24 +631,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe","name":"3aca31b9-f696-4d07-9d88-0760777a9cbe","status":"Creating","startTime":"2020-08-09T15:32:44.7461937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:35:50 GMT
+ - Tue, 08 Sep 2020 12:45:24 GMT
expires:
- '-1'
pragma:
@@ -679,24 +680,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe","name":"3aca31b9-f696-4d07-9d88-0760777a9cbe","status":"Creating","startTime":"2020-08-09T15:32:44.7461937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:36:21 GMT
+ - Tue, 08 Sep 2020 12:45:54 GMT
expires:
- '-1'
pragma:
@@ -728,24 +729,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3aca31b9-f696-4d07-9d88-0760777a9cbe","name":"3aca31b9-f696-4d07-9d88-0760777a9cbe","status":"Succeeded","startTime":"2020-08-09T15:32:44.7461937Z","endTime":"2020-08-09T15:36:32.2342517Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '572'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:36:52 GMT
+ - Tue, 08 Sep 2020 12:46:24 GMT
expires:
- '-1'
pragma:
@@ -777,26 +778,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A36%3A32.2276004Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","fileSystemId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Succeeded","fileSystemId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4a2d162c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1383'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:36:52 GMT
- etag:
- - W/"datetime'2020-08-09T15%3A36%3A32.2276004Z'"
+ - Tue, 08 Sep 2020 12:46:55 GMT
expires:
- '-1'
pragma:
@@ -819,8 +818,7 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "westus2", "properties": {"creationToken": "sdk-py-tests-vol-1",
- "serviceLevel": "Premium", "usageThreshold": 214748364800, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default"}}\'''''
+ body: null
headers:
Accept:
- application/json
@@ -828,35 +826,74 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
- Content-Length:
- - '317'
- Content-Type:
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
- application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:47:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A36%3A55.8078317Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","fileSystemId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"provisioningState":"Updating","fileSystemId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4a2d162c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a252763e-299d-4457-bd4d-d44ebc7806d2?api-version=2020-02-01
cache-control:
- no-cache
content-length:
- - '1382'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:36:55 GMT
- etag:
- - W/"datetime'2020-08-09T15%3A36%3A55.8078317Z'"
+ - Tue, 08 Sep 2020 12:47:56 GMT
expires:
- '-1'
pragma:
@@ -873,8 +910,6 @@ interactions:
- Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
x-powered-by:
- ASP.NET
status:
@@ -890,24 +925,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a252763e-299d-4457-bd4d-d44ebc7806d2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a252763e-299d-4457-bd4d-d44ebc7806d2","name":"a252763e-299d-4457-bd4d-d44ebc7806d2","status":"Succeeded","startTime":"2020-08-09T15:36:55.7617807Z","endTime":"2020-08-09T15:36:58.793035Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '571'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:37:27 GMT
+ - Tue, 08 Sep 2020 12:48:26 GMT
expires:
- '-1'
pragma:
@@ -939,26 +974,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-08-09T15%3A36%3A58.7870092Z''\"","location":"westus2","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","fileSystemId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.8.5"}],"fileSystemId":"22f6fcfa-ea87-6a69-4dcd-2416d6395886","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"nfsv41":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_8f82c7b40509489d9e97d719b9b955b4_4a2d162c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa2vnet464/subnets/default","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1337'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:37:28 GMT
- etag:
- - W/"datetime'2020-08-09T15%3A36%3A58.7870092Z'"
+ - Tue, 08 Sep 2020 12:48:56 GMT
expires:
- '-1'
pragma:
@@ -989,33 +1022,27 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
- Content-Length:
- - '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: ''
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922?api-version=2020-02-01
cache-control:
- no-cache
content-length:
- - '0'
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:37:29 GMT
+ - Tue, 08 Sep 2020 12:49:26 GMT
expires:
- '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922?api-version=2020-02-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1024,15 +1051,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-deletes:
- - '14999'
x-powered-by:
- ASP.NET
status:
- code: 202
- message: Accepted
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -1043,24 +1072,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922","name":"9b66d63f-cacd-4b6d-99e7-b52a86675922","status":"Deleting","startTime":"2020-08-09T15:37:30.1974723Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:38:02 GMT
+ - Tue, 08 Sep 2020 12:49:57 GMT
expires:
- '-1'
pragma:
@@ -1092,24 +1121,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922","name":"9b66d63f-cacd-4b6d-99e7-b52a86675922","status":"Deleting","startTime":"2020-08-09T15:37:30.1974723Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:38:33 GMT
+ - Tue, 08 Sep 2020 12:50:28 GMT
expires:
- '-1'
pragma:
@@ -1141,24 +1170,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922","name":"9b66d63f-cacd-4b6d-99e7-b52a86675922","status":"Deleting","startTime":"2020-08-09T15:37:30.1974723Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '561'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:39:03 GMT
+ - Tue, 08 Sep 2020 12:50:58 GMT
expires:
- '-1'
pragma:
@@ -1190,24 +1219,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9b66d63f-cacd-4b6d-99e7-b52a86675922","name":"9b66d63f-cacd-4b6d-99e7-b52a86675922","status":"Succeeded","startTime":"2020-08-09T15:37:30.1974723Z","endTime":"2020-08-09T15:39:27.1304423Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '572'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:39:34 GMT
+ - Tue, 08 Sep 2020 12:51:28 GMT
expires:
- '-1'
pragma:
@@ -1239,39 +1268,45 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
- under resource group ''sdk-net-test-qa2'' was not found. For more details
- please go to https://aka.ms/ARMResourceNotFoundFix"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
+ access-control-expose-headers:
+ - Request-Context
cache-control:
- no-cache
content-length:
- - '299'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:42:56 GMT
+ - Tue, 08 Sep 2020 12:51:58 GMT
expires:
- '-1'
pragma:
- no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-failure-cause:
- - gateway
+ x-powered-by:
+ - ASP.NET
status:
- code: 404
- message: Not Found
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -1281,33 +1316,27 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
- Content-Length:
- - '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
response:
body:
- string: ''
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9697ea06-66b5-4ad5-8939-16b70c03f708?api-version=2020-02-01
cache-control:
- no-cache
content-length:
- - '0'
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:43:08 GMT
+ - Tue, 08 Sep 2020 12:52:29 GMT
expires:
- '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9697ea06-66b5-4ad5-8939-16b70c03f708?api-version=2020-02-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1316,10 +1345,1698 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-deletes:
- - '14993'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:52:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:53:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:53:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:54:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:55:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:55:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:56:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:56:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:57:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:57:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:58:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Creating","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:58:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b25e20f4-3bf4-4b15-9ff5-2653d5410a95","name":"b25e20f4-3bf4-4b15-9ff5-2653d5410a95","status":"Succeeded","startTime":"2020-09-08T12:42:21.4221618Z","endTime":"2020-09-08T12:58:57.7035525Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '578'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:59:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-08T12%3A58%3A57.698981Z''\"","location":"westcentralus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"f4be6b46-4be9-e608-9168-1d466b9014f0","fileSystemId":"f4be6b46-4be9-e608-9168-1d466b9014f0","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"provisioningState":"Succeeded","fileSystemId":"f4be6b46-4be9-e608-9168-1d466b9014f0","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_8c839cf6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '1632'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:59:03 GMT
+ etag:
+ - W/"datetime'2020-09-08T12%3A58%3A57.698981Z'"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: 'b''b\''{"location": "westcentralus", "properties": {"creationToken": "sdk-py-tests-vol-1",
+ "serviceLevel": "Premium", "usageThreshold": 214748364800, "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa3vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '349'
+ Content-Type:
+ - application/json; charset=utf-8
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-08T12%3A59%3A06.0539342Z''\"","location":"westcentralus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"f4be6b46-4be9-e608-9168-1d466b9014f0","fileSystemId":"f4be6b46-4be9-e608-9168-1d466b9014f0","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"provisioningState":"Updating","fileSystemId":"f4be6b46-4be9-e608-9168-1d466b9014f0","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_8c839cf6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f788b49-6ffb-4a56-9df5-d2e8bd8606c3?api-version=2020-06-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1632'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:59:05 GMT
+ etag:
+ - W/"datetime'2020-09-08T12%3A59%3A06.0539342Z'"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f788b49-6ffb-4a56-9df5-d2e8bd8606c3?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f788b49-6ffb-4a56-9df5-d2e8bd8606c3","name":"8f788b49-6ffb-4a56-9df5-d2e8bd8606c3","status":"Succeeded","startTime":"2020-09-08T12:59:05.9405907Z","endTime":"2020-09-08T12:59:09.5243835Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '578'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:59:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/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/\"datetime''2020-09-08T12%3A59%3A09.6645026Z''\"","location":"westcentralus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"f4be6b46-4be9-e608-9168-1d466b9014f0","fileSystemId":"f4be6b46-4be9-e608-9168-1d466b9014f0","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"fileSystemId":"f4be6b46-4be9-e608-9168-1d466b9014f0","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_d6b6d5667ca611e9bd525e79ea9641f1_8c839cf6","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.Network/virtualNetworks/sdknettestqa3vnet464/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"Succeeded"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '1579'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 12:59:36 GMT
+ etag:
+ - W/"datetime'2020-09-08T12%3A59%3A09.6645026Z'"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
+ response:
+ body:
+ string: ''
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 08 Sep 2020 12:59:38 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01&operationResultResponseType=Location
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:00:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:00:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:01:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:01:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:02:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:02:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:03:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:03:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:04:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:04:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:05:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:05:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Deleting","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '567'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:06:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7?api-version=2020-06-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1720e0bf-d840-4963-8300-0194822b84c7","name":"1720e0bf-d840-4963-8300-0194822b84c7","status":"Succeeded","startTime":"2020-09-08T12:59:38.6370724Z","endTime":"2020-09-08T13:06:36.8792773Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '578'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:06:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
+ response:
+ body:
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
+ under resource group ''sdk-net-test-qa2'' was not found. For more details
+ please go to https://aka.ms/ARMResourceNotFoundFix"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '299'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 08 Sep 2020 13:10:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-failure-cause:
+ - gateway
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ User-Agent:
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
+ response:
+ body:
+ string: ''
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/26221167-4266-4d7f-a374-6d2924bd710d?api-version=2020-06-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Tue, 08 Sep 2020 13:10:16 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/26221167-4266-4d7f-a374-6d2924bd710d?api-version=2020-06-01&operationResultResponseType=Location
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
x-powered-by:
- ASP.NET
status:
@@ -1335,24 +3052,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9697ea06-66b5-4ad5-8939-16b70c03f708?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/26221167-4266-4d7f-a374-6d2924bd710d?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9697ea06-66b5-4ad5-8939-16b70c03f708","name":"9697ea06-66b5-4ad5-8939-16b70c03f708","status":"Succeeded","startTime":"2020-08-09T15:43:09.1633971Z","endTime":"2020-08-09T15:43:09.4134112Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/26221167-4266-4d7f-a374-6d2924bd710d","name":"26221167-4266-4d7f-a374-6d2924bd710d","status":"Succeeded","startTime":"2020-09-08T13:10:16.608875Z","endTime":"2020-09-08T13:10:17.2651402Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '545'
+ - '550'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:43:40 GMT
+ - Tue, 08 Sep 2020 13:10:47 GMT
expires:
- '-1'
pragma:
@@ -1386,12 +3103,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1399,7 +3116,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:43:52 GMT
+ - Tue, 08 Sep 2020 13:10:57 GMT
expires:
- '-1'
pragma:
@@ -1409,7 +3126,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14992'
+ - '14998'
status:
code: 204
message: No Content
@@ -1425,12 +3142,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1438,7 +3155,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:44:03 GMT
+ - Tue, 08 Sep 2020 13:11:08 GMT
expires:
- '-1'
pragma:
@@ -1448,7 +3165,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14991'
+ - '14997'
status:
code: 204
message: No Content
@@ -1464,12 +3181,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1477,7 +3194,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:44:13 GMT
+ - Tue, 08 Sep 2020 13:11:18 GMT
expires:
- '-1'
pragma:
@@ -1487,7 +3204,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14990'
+ - '14996'
status:
code: 204
message: No Content
@@ -1503,12 +3220,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1516,7 +3233,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 15:44:24 GMT
+ - Tue, 08 Sep 2020 13:11:28 GMT
expires:
- '-1'
pragma:
@@ -1526,7 +3243,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14989'
+ - '14995'
status:
code: 204
message: No Content
@@ -1540,12 +3257,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -1559,7 +3276,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:44:35 GMT
+ - Tue, 08 Sep 2020 13:11:38 GMT
expires:
- '-1'
pragma:
@@ -1585,12 +3302,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -1598,17 +3315,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23ba305e-34c0-4541-b6e1-fd87af651eea?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa52793f-0797-4034-bc27-4bab52e8fb41?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 15:44:37 GMT
+ - Tue, 08 Sep 2020 13:11:40 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23ba305e-34c0-4541-b6e1-fd87af651eea?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa52793f-0797-4034-bc27-4bab52e8fb41?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1620,7 +3337,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14988'
+ - '14994'
x-powered-by:
- ASP.NET
status:
@@ -1636,24 +3353,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23ba305e-34c0-4541-b6e1-fd87af651eea?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa52793f-0797-4034-bc27-4bab52e8fb41?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/23ba305e-34c0-4541-b6e1-fd87af651eea","name":"23ba305e-34c0-4541-b6e1-fd87af651eea","status":"Succeeded","startTime":"2020-08-09T15:44:37.8841427Z","endTime":"2020-08-09T15:44:37.9805449Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa52793f-0797-4034-bc27-4bab52e8fb41","name":"aa52793f-0797-4034-bc27-4bab52e8fb41","status":"Succeeded","startTime":"2020-09-08T13:11:40.5663466Z","endTime":"2020-09-08T13:11:40.7381526Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '511'
+ - '517'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:45:09 GMT
+ - Tue, 08 Sep 2020 13:12:11 GMT
expires:
- '-1'
pragma:
@@ -1685,12 +3402,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -1704,7 +3421,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 15:45:12 GMT
+ - Tue, 08 Sep 2020 13:12:14 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_volume_replication.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_volume_replication.yaml
index c5a4f4582c90..92da249f9526 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_volume_replication.yaml
+++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_volume.test_volume_replication.yaml
@@ -9,34 +9,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '28'
+ - '22'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T20%3A08%3A20.7730217Z''\"","location":"westus2stage","properties":{"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-09T15%3A35%3A12.3097305Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd218edc-387f-4d11-ae35-a691d117e2e1?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7953a616-bb19-41e3-ad7c-4db06351b5b0?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '348'
+ - '343'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:08:21 GMT
+ - Wed, 09 Sep 2020 15:35:12 GMT
etag:
- - W/"datetime'2020-08-09T20%3A08%3A20.7730217Z'"
+ - W/"datetime'2020-09-09T15%3A35%3A12.3097305Z'"
expires:
- '-1'
pragma:
@@ -66,24 +66,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd218edc-387f-4d11-ae35-a691d117e2e1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7953a616-bb19-41e3-ad7c-4db06351b5b0?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/bd218edc-387f-4d11-ae35-a691d117e2e1","name":"bd218edc-387f-4d11-ae35-a691d117e2e1","status":"Succeeded","startTime":"2020-08-09T20:08:20.1430571Z","endTime":"2020-08-09T20:08:21.5210188Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/7953a616-bb19-41e3-ad7c-4db06351b5b0","name":"7953a616-bb19-41e3-ad7c-4db06351b5b0","status":"Succeeded","startTime":"2020-09-09T15:35:12.2271101Z","endTime":"2020-09-09T15:35:12.3677424Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '512'
+ - '506'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:08:53 GMT
+ - Wed, 09 Sep 2020 15:35:43 GMT
expires:
- '-1'
pragma:
@@ -115,26 +115,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T20%3A08%3A21.4146209Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-09T15%3A35%3A12.3697895Z''\"","location":"westus2stage","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '349'
+ - '343'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:08:54 GMT
+ - Wed, 09 Sep 2020 15:35:43 GMT
etag:
- - W/"datetime'2020-08-09T20%3A08%3A21.4146209Z'"
+ - W/"datetime'2020-09-09T15%3A35%3A12.3697895Z'"
expires:
- '-1'
pragma:
@@ -158,7 +158,7 @@ interactions:
message: OK
- request:
body: '{"location": "westus2stage", "properties": {"size": 4398046511104, "serviceLevel":
- "Premium"}}'
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -167,36 +167,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '94'
+ - '107'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
location:
- westus2stage
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A09%3A05.2115551Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A35%3A45.639666Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/02d1856f-e69e-4225-b7f4-e28197fcf7a4?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/26017076-584e-4cbf-9158-70413ddce63c?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '462'
+ - '529'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:09:05 GMT
+ - Wed, 09 Sep 2020 15:35:46 GMT
etag:
- - W/"datetime'2020-08-09T20%3A09%3A05.2115551Z'"
+ - W/"datetime'2020-09-09T15%3A35%3A45.639666Z'"
expires:
- '-1'
pragma:
@@ -226,24 +226,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/02d1856f-e69e-4225-b7f4-e28197fcf7a4?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/26017076-584e-4cbf-9158-70413ddce63c?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/02d1856f-e69e-4225-b7f4-e28197fcf7a4","name":"02d1856f-e69e-4225-b7f4-e28197fcf7a4","status":"Succeeded","startTime":"2020-08-09T20:09:04.8399127Z","endTime":"2020-08-09T20:09:10.9817162Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/26017076-584e-4cbf-9158-70413ddce63c","name":"26017076-584e-4cbf-9158-70413ddce63c","status":"Succeeded","startTime":"2020-09-09T15:35:45.5764517Z","endTime":"2020-09-09T15:35:46.0768187Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '546'
+ - '540'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:09:38 GMT
+ - Wed, 09 Sep 2020 15:36:16 GMT
expires:
- '-1'
pragma:
@@ -275,26 +275,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A09%3A10.8828537Z''\"","location":"westus2stage","properties":{"poolId":"0c642878-bab7-47c5-fe33-debdced5fb50","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A35%3A46.0770838Z''\"","location":"westus2stage","properties":{"poolId":"ae0bf092-dbcc-2d49-7c67-f22299e76c8e","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '511'
+ - '583'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:09:39 GMT
+ - Wed, 09 Sep 2020 15:36:22 GMT
etag:
- - W/"datetime'2020-08-09T20%3A09%3A10.8828537Z'"
+ - W/"datetime'2020-09-09T15%3A35%3A46.0770838Z'"
expires:
- '-1'
pragma:
@@ -319,7 +319,8 @@ interactions:
- request:
body: 'b''b\''{"location": "westus2stage", "properties": {"creationToken": "sdk-py-tests-vol-1",
"serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
- ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default"}}\'''''
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default",
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -328,34 +329,34 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '343'
+ - '363'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A09%3A53.6488248Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A36%3A40.4161455Z''\"","location":"westus2stage","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f609d2fc-06cf-4fc6-b4ec-2efd280b87e4?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '759'
+ - '777'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:09:54 GMT
+ - Wed, 09 Sep 2020 15:36:40 GMT
etag:
- - W/"datetime'2020-08-09T20%3A09%3A53.6488248Z'"
+ - W/"datetime'2020-09-09T15%3A36%3A40.4161455Z'"
expires:
- '-1'
pragma:
@@ -385,24 +386,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f609d2fc-06cf-4fc6-b4ec-2efd280b87e4?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/f609d2fc-06cf-4fc6-b4ec-2efd280b87e4","name":"f609d2fc-06cf-4fc6-b4ec-2efd280b87e4","status":"Succeeded","startTime":"2020-08-09T20:09:53.254244Z","endTime":"2020-08-09T20:10:19.0895828Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Creating","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '572'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:10:27 GMT
+ - Wed, 09 Sep 2020 15:37:11 GMT
expires:
- '-1'
pragma:
@@ -434,26 +435,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A10%3A18.9314541Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"provisioningState":"Succeeded","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Creating","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1396'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:10:27 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A10%3A18.9314541Z'"
+ - Wed, 09 Sep 2020 15:37:41 GMT
expires:
- '-1'
pragma:
@@ -485,28 +484,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A10%3A18.9314541Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"provisioningState":"Succeeded","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Creating","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1396'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:10:33 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A10%3A18.9314541Z'"
+ - Wed, 09 Sep 2020 15:38:11 GMT
expires:
- '-1'
pragma:
@@ -528,63 +523,6 @@ interactions:
status:
code: 200
message: OK
-- request:
- body: '{"location": "southcentralusstage"}'
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Length:
- - '35'
- Content-Type:
- - application/json; charset=utf-8
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T20%3A10%3A39.2801122Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Creating"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/911b0d16-d3c5-485e-9daa-589e42f099d3?api-version=2020-02-01
- cache-control:
- - no-cache
- content-length:
- - '357'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 20:10:40 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A10%3A39.2801122Z'"
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
- x-powered-by:
- - ASP.NET
- status:
- code: 201
- message: Created
- request:
body: null
headers:
@@ -595,24 +533,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/911b0d16-d3c5-485e-9daa-589e42f099d3?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/911b0d16-d3c5-485e-9daa-589e42f099d3","name":"911b0d16-d3c5-485e-9daa-589e42f099d3","status":"Succeeded","startTime":"2020-08-09T20:10:39.2365679Z","endTime":"2020-08-09T20:10:39.3461338Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Creating","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '521'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:11:12 GMT
+ - Wed, 09 Sep 2020 15:38:42 GMT
expires:
- '-1'
pragma:
@@ -644,26 +582,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-08-09T20%3A10%3A39.3451583Z''\"","location":"southcentralusstage","properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Creating","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '358'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:11:12 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A10%3A39.3451583Z'"
+ - Wed, 09 Sep 2020 15:39:12 GMT
expires:
- '-1'
pragma:
@@ -686,8 +622,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "southcentralusstage", "properties": {"size": 4398046511104,
- "serviceLevel": "Premium"}}'
+ body: null
headers:
Accept:
- application/json
@@ -695,37 +630,25 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
- Content-Length:
- - '101'
- Content-Type:
- - application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- location:
- - southcentralusstage
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A11%3A15.8868992Z''\"","location":"southcentralusstage","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Creating","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5448cddc-cfcc-461e-b473-5f55322d0ef7?api-version=2020-02-01
cache-control:
- no-cache
content-length:
- - '471'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:11:15 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A11%3A15.8868992Z'"
+ - Wed, 09 Sep 2020 15:39:42 GMT
expires:
- '-1'
pragma:
@@ -736,15 +659,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -755,24 +680,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5448cddc-cfcc-461e-b473-5f55322d0ef7?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/5448cddc-cfcc-461e-b473-5f55322d0ef7","name":"5448cddc-cfcc-461e-b473-5f55322d0ef7","status":"Succeeded","startTime":"2020-08-09T20:11:15.8436304Z","endTime":"2020-08-09T20:11:16.1713378Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Creating","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '555'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:11:48 GMT
+ - Wed, 09 Sep 2020 15:40:13 GMT
expires:
- '-1'
pragma:
@@ -804,26 +729,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A11%3A16.1690983Z''\"","location":"southcentralusstage","properties":{"poolId":"6221207a-9818-cd5d-b1ed-24d5c57bd4bc","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Creating","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '520'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:11:48 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A11%3A16.1690983Z'"
+ - Wed, 09 Sep 2020 15:40:42 GMT
expires:
- '-1'
pragma:
@@ -846,11 +769,7 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"location": "southcentralusstage", "properties": {"creationToken":
- "sdk-py-tests-vol-2", "serviceLevel": "Premium", "usageThreshold": 107374182400,
- "protocolTypes": ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default",
- "volumeType": "DataProtection", "dataProtection": {"replication": {"endpointType":
- "dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}}}\'''''
+ body: null
headers:
Accept:
- application/json
@@ -858,35 +777,25 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
- Content-Length:
- - '715'
- Content-Type:
- - application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A12%3A01.6781611Z''\"","location":"southcentralusstage","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Creating"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/d7fe743a-453f-4900-adda-a59d77080395","name":"d7fe743a-453f-4900-adda-a59d77080395","status":"Succeeded","startTime":"2020-09-09T15:36:40.3300768Z","endTime":"2020-09-09T15:41:01.8312711Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79589b4a-a961-48b4-af7c-72591ef7391e?api-version=2020-02-01
cache-control:
- no-cache
content-length:
- - '1123'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:12:02 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A12%3A01.6781611Z'"
+ - Wed, 09 Sep 2020 15:41:12 GMT
expires:
- '-1'
pragma:
@@ -897,15 +806,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1194'
x-powered-by:
- ASP.NET
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -916,24 +827,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79589b4a-a961-48b4-af7c-72591ef7391e?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/79589b4a-a961-48b4-af7c-72591ef7391e","name":"79589b4a-a961-48b4-af7c-72591ef7391e","status":"Succeeded","startTime":"2020-08-09T20:12:01.6270773Z","endTime":"2020-08-09T20:12:29.3108929Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A41%3A01.8235883Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"provisioningState":"Succeeded","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '582'
+ - '1574'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:12:34 GMT
+ - Wed, 09 Sep 2020 15:41:13 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A41%3A01.8235883Z'"
expires:
- '-1'
pragma:
@@ -965,26 +878,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A12%3A29.3116287Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A41%3A01.8235883Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"provisioningState":"Succeeded","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1729'
+ - '1574'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:12:34 GMT
+ - Wed, 09 Sep 2020 15:41:20 GMT
etag:
- - W/"datetime'2020-08-09T20%3A12%3A29.3116287Z'"
+ - W/"datetime'2020-09-09T15%3A41%3A01.8235883Z'"
expires:
- '-1'
pragma:
@@ -1007,7 +922,7 @@ interactions:
code: 200
message: OK
- request:
- body: 'b''b\''{"remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}\'''''
+ body: '{"location": "westus"}'
headers:
Accept:
- application/json
@@ -1016,34 +931,36 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '233'
+ - '22'
Content-Type:
- application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/authorizeReplication?api-version=2020-02-01
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-06-01
response:
body:
- string: ''
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-09T15%3A41%3A26.3005278Z''\"","location":"westus","properties":{"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4877d5bc-732f-4d29-b633-b80cadc90d81?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/86519521-aa1e-4fc6-9aac-57ec3dc71728?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '0'
+ - '344'
+ content-type:
+ - application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:09 GMT
+ - Wed, 09 Sep 2020 15:41:26 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A41%3A26.3005278Z'"
expires:
- '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4877d5bc-732f-4d29-b633-b80cadc90d81?api-version=2020-02-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1059,8 +976,8 @@ interactions:
x-powered-by:
- ASP.NET
status:
- code: 202
- message: Accepted
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -1071,28 +988,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/86519521-aa1e-4fc6-9aac-57ec3dc71728?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A13%3A09.3441134Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"provisioningState":"AuthorizeReplication","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/86519521-aa1e-4fc6-9aac-57ec3dc71728","name":"86519521-aa1e-4fc6-9aac-57ec3dc71728","status":"Succeeded","startTime":"2020-09-09T15:41:26.1185837Z","endTime":"2020-09-09T15:41:26.3686524Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1407'
+ - '508'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:10 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A13%3A09.3441134Z'"
+ - Wed, 09 Sep 2020 15:41:58 GMT
expires:
- '-1'
pragma:
@@ -1124,28 +1037,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A12%3A29.3116287Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2020-09-09T15%3A41%3A26.3665748Z''\"","location":"westus","properties":{"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1729'
+ - '345'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:11 GMT
+ - Wed, 09 Sep 2020 15:41:58 GMT
etag:
- - W/"datetime'2020-08-09T20%3A12%3A29.3116287Z'"
+ - W/"datetime'2020-09-09T15%3A41%3A26.3665748Z'"
expires:
- '-1'
pragma:
@@ -1168,7 +1079,8 @@ interactions:
code: 200
message: OK
- request:
- body: null
+ body: '{"location": "westus", "properties": {"size": 4398046511104, "serviceLevel":
+ "Premium", "qosType": "Auto"}}'
headers:
Accept:
- application/json
@@ -1176,29 +1088,37 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '107'
+ Content-Type:
+ - application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ location:
+ - westus
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A13%3A09.3441134Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"provisioningState":"AuthorizeReplication","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A42%3A00.9955062Z''\"","location":"westus","properties":{"serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":0.0,"utilizedThroughputMibps":0.0,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/d799e9b6-a84c-4949-86b1-929c2e3b3c9d?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '1407'
+ - '532'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:13 GMT
+ - Wed, 09 Sep 2020 15:42:02 GMT
etag:
- - W/"datetime'2020-08-09T20%3A13%3A09.3441134Z'"
+ - W/"datetime'2020-09-09T15%3A42%3A00.9955062Z'"
expires:
- '-1'
pragma:
@@ -1209,17 +1129,15 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -1230,28 +1148,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/d799e9b6-a84c-4949-86b1-929c2e3b3c9d?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A12%3A29.3116287Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/d799e9b6-a84c-4949-86b1-929c2e3b3c9d","name":"d799e9b6-a84c-4949-86b1-929c2e3b3c9d","status":"Succeeded","startTime":"2020-09-09T15:42:00.9384472Z","endTime":"2020-09-09T15:42:01.219728Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1729'
+ - '541'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:13 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A12%3A29.3116287Z'"
+ - Wed, 09 Sep 2020 15:42:32 GMT
expires:
- '-1'
pragma:
@@ -1283,28 +1197,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A13%3A09.3441134Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"provisioningState":"AuthorizeReplication","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A42%3A01.2176652Z''\"","location":"westus","properties":{"poolId":"23a2b29c-dbf4-fa87-9a93-2b1d3ed82417","serviceLevel":"Premium","size":4398046511104,"qosType":"Auto","totalThroughputMibps":262.144,"utilizedThroughputMibps":0.0,"provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1407'
+ - '585'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:15 GMT
+ - Wed, 09 Sep 2020 15:42:33 GMT
etag:
- - W/"datetime'2020-08-09T20%3A13%3A09.3441134Z'"
+ - W/"datetime'2020-09-09T15%3A42%3A01.2176652Z'"
expires:
- '-1'
pragma:
@@ -1327,7 +1239,12 @@ interactions:
code: 200
message: OK
- request:
- body: null
+ body: 'b''b\''{"location": "westus", "properties": {"creationToken": "sdk-py-tests-vol-2",
+ "serviceLevel": "Premium", "usageThreshold": 107374182400, "protocolTypes":
+ ["NFSv3"], "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default",
+ "volumeType": "DataProtection", "dataProtection": {"replication": {"endpointType":
+ "dst", "replicationSchedule": "_10minutely", "remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},
+ "kerberosEnabled": false}}\'''''
headers:
Accept:
- application/json
@@ -1335,29 +1252,35 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '728'
+ Content-Type:
+ - application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A13%3A14.9155164Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"ActivateReplication"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A42%3A45.6706699Z''\"","location":"westus","properties":{"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"protocolTypes":["NFSv3"],"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"provisioningState":"Creating"}}'
headers:
access-control-expose-headers:
- Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '1739'
+ - '1134'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:16 GMT
+ - Wed, 09 Sep 2020 15:42:46 GMT
etag:
- - W/"datetime'2020-08-09T20%3A13%3A14.9155164Z'"
+ - W/"datetime'2020-09-09T15%3A42%3A45.6706699Z'"
expires:
- '-1'
pragma:
@@ -1368,17 +1291,15 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1197'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -1389,28 +1310,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A13%3A18.0632582Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443","name":"eed96e28-5b82-4f13-917a-4f3a44772443","status":"Creating","startTime":"2020-09-09T15:42:45.6314634Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1726'
+ - '558'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:18 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A13%3A18.0632582Z'"
+ - Wed, 09 Sep 2020 15:43:17 GMT
expires:
- '-1'
pragma:
@@ -1442,28 +1359,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A13%3A14.9155164Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"ActivateReplication"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443","name":"eed96e28-5b82-4f13-917a-4f3a44772443","status":"Creating","startTime":"2020-09-09T15:42:45.6314634Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1739'
+ - '558'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:18 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A13%3A14.9155164Z'"
+ - Wed, 09 Sep 2020 15:43:47 GMT
expires:
- '-1'
pragma:
@@ -1495,28 +1408,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A13%3A18.0632582Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443","name":"eed96e28-5b82-4f13-917a-4f3a44772443","status":"Creating","startTime":"2020-09-09T15:42:45.6314634Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1726'
+ - '558'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:20 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A13%3A18.0632582Z'"
+ - Wed, 09 Sep 2020 15:44:17 GMT
expires:
- '-1'
pragma:
@@ -1548,28 +1457,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A13%3A14.9155164Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"ActivateReplication"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443","name":"eed96e28-5b82-4f13-917a-4f3a44772443","status":"Creating","startTime":"2020-09-09T15:42:45.6314634Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1739'
+ - '558'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:21 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A13%3A14.9155164Z'"
+ - Wed, 09 Sep 2020 15:44:48 GMT
expires:
- '-1'
pragma:
@@ -1601,28 +1506,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A13%3A18.0632582Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443","name":"eed96e28-5b82-4f13-917a-4f3a44772443","status":"Creating","startTime":"2020-09-09T15:42:45.6314634Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1726'
+ - '558'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:23 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A13%3A18.0632582Z'"
+ - Wed, 09 Sep 2020 15:45:18 GMT
expires:
- '-1'
pragma:
@@ -1654,28 +1555,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A13%3A21.5061242Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"26150799-8672-996b-73e7-ea9e9647d096","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/eed96e28-5b82-4f13-917a-4f3a44772443","name":"eed96e28-5b82-4f13-917a-4f3a44772443","status":"Succeeded","startTime":"2020-09-09T15:42:45.6314634Z","endTime":"2020-09-09T15:45:34.8132014Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1820'
+ - '569'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:23 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A13%3A21.5061242Z'"
+ - Wed, 09 Sep 2020 15:45:48 GMT
expires:
- '-1'
pragma:
@@ -1707,26 +1604,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A45%3A34.8134497Z''\"","location":"westus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"6ee9c18c-837c-4414-c339-dca35489a675","fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_dd6abdd9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1940'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:24 GMT
+ - Wed, 09 Sep 2020 15:45:48 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A45%3A34.8134497Z'"
expires:
- '-1'
pragma:
@@ -1749,7 +1646,7 @@ interactions:
code: 200
message: OK
- request:
- body: null
+ body: 'b''b\''{"remoteVolumeResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}\'''''
headers:
Accept:
- application/json
@@ -1757,29 +1654,35 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '233'
+ Content-Type:
+ - application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/authorizeReplication?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: ''
headers:
access-control-expose-headers:
- Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/969c609c-0618-474a-9dd3-82e5d0617a46?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '111'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Sun, 09 Aug 2020 20:13:26 GMT
+ - Wed, 09 Sep 2020 15:46:20 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/969c609c-0618-474a-9dd3-82e5d0617a46?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -1788,17 +1691,15 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
body: null
headers:
@@ -1809,26 +1710,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A46%3A21.5328926Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"throughputMibps":0.0,"provisioningState":"AuthorizeReplication","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1607'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:27 GMT
+ - Wed, 09 Sep 2020 15:46:20 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A21.5328926Z'"
expires:
- '-1'
pragma:
@@ -1860,26 +1763,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A45%3A34.8134497Z''\"","location":"westus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"6ee9c18c-837c-4414-c339-dca35489a675","fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_dd6abdd9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1940'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:29 GMT
+ - Wed, 09 Sep 2020 15:46:21 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A45%3A34.8134497Z'"
expires:
- '-1'
pragma:
@@ -1911,26 +1816,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A46%3A21.5328926Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"throughputMibps":0.0,"provisioningState":"AuthorizeReplication","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1607'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:30 GMT
+ - Wed, 09 Sep 2020 15:46:24 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A21.5328926Z'"
expires:
- '-1'
pragma:
@@ -1962,26 +1869,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A45%3A34.8134497Z''\"","location":"westus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"6ee9c18c-837c-4414-c339-dca35489a675","fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_dd6abdd9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1940'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:32 GMT
+ - Wed, 09 Sep 2020 15:46:24 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A45%3A34.8134497Z'"
expires:
- '-1'
pragma:
@@ -2013,26 +1922,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A46%3A21.5328926Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"throughputMibps":0.0,"provisioningState":"AuthorizeReplication","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1607'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:33 GMT
+ - Wed, 09 Sep 2020 15:46:25 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A21.5328926Z'"
expires:
- '-1'
pragma:
@@ -2064,26 +1975,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A46%3A24.533244Z''\"","location":"westus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"6ee9c18c-837c-4414-c339-dca35489a675","fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_dd6abdd9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"ActivateReplication"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1949'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:35 GMT
+ - Wed, 09 Sep 2020 15:46:25 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A24.533244Z'"
expires:
- '-1'
pragma:
@@ -2115,26 +2028,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A46%3A26.8439786Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"westus"}},"provisioningState":"Succeeded","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1891'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:37 GMT
+ - Wed, 09 Sep 2020 15:46:28 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A26.8439786Z'"
expires:
- '-1'
pragma:
@@ -2166,26 +2081,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A46%3A24.533244Z''\"","location":"westus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"6ee9c18c-837c-4414-c339-dca35489a675","fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"volumeType":"DataProtection","dataProtection":{"replication":{"endPointType":"dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}},"fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_dd6abdd9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"ActivateReplication"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1949'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:38 GMT
+ - Wed, 09 Sep 2020 15:46:28 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A24.533244Z'"
expires:
- '-1'
pragma:
@@ -2217,26 +2134,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A46%3A26.8439786Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"westus"}},"provisioningState":"Succeeded","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1891'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:40 GMT
+ - Wed, 09 Sep 2020 15:46:36 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A26.8439786Z'"
expires:
- '-1'
pragma:
@@ -2268,24 +2187,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4877d5bc-732f-4d29-b633-b80cadc90d81?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/4877d5bc-732f-4d29-b633-b80cadc90d81","name":"4877d5bc-732f-4d29-b633-b80cadc90d81","status":"Succeeded","startTime":"2020-08-09T20:13:08.7984759Z","endTime":"2020-08-09T20:13:18.2344196Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A46%3A32.2908316Z''\"","location":"westus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"6ee9c18c-837c-4414-c339-dca35489a675","fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"volumeType":"DataProtection","dataProtection":{"replication":{"replicationId":"abc7a428-2310-8686-0321-38d98692aa4a","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_dd6abdd9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '573'
+ - '2025'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:41 GMT
+ - Wed, 09 Sep 2020 15:46:36 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A32.2908316Z'"
expires:
- '-1'
pragma:
@@ -2317,12 +2240,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2336,7 +2259,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:41 GMT
+ - Wed, 09 Sep 2020 15:46:37 GMT
expires:
- '-1'
pragma:
@@ -2368,12 +2291,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2387,7 +2310,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:43 GMT
+ - Wed, 09 Sep 2020 15:46:38 GMT
expires:
- '-1'
pragma:
@@ -2419,12 +2342,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2438,7 +2361,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:45 GMT
+ - Wed, 09 Sep 2020 15:46:39 GMT
expires:
- '-1'
pragma:
@@ -2470,12 +2393,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2489,7 +2412,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:46 GMT
+ - Wed, 09 Sep 2020 15:46:41 GMT
expires:
- '-1'
pragma:
@@ -2521,12 +2444,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2540,7 +2463,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:48 GMT
+ - Wed, 09 Sep 2020 15:46:42 GMT
expires:
- '-1'
pragma:
@@ -2572,12 +2495,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2591,7 +2514,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:49 GMT
+ - Wed, 09 Sep 2020 15:46:44 GMT
expires:
- '-1'
pragma:
@@ -2623,12 +2546,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2642,7 +2565,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:51 GMT
+ - Wed, 09 Sep 2020 15:46:45 GMT
expires:
- '-1'
pragma:
@@ -2674,12 +2597,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2693,7 +2616,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:52 GMT
+ - Wed, 09 Sep 2020 15:46:47 GMT
expires:
- '-1'
pragma:
@@ -2725,12 +2648,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2744,7 +2667,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:54 GMT
+ - Wed, 09 Sep 2020 15:46:48 GMT
expires:
- '-1'
pragma:
@@ -2776,12 +2699,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2795,7 +2718,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:55 GMT
+ - Wed, 09 Sep 2020 15:46:49 GMT
expires:
- '-1'
pragma:
@@ -2827,12 +2750,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2846,7 +2769,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:57 GMT
+ - Wed, 09 Sep 2020 15:46:51 GMT
expires:
- '-1'
pragma:
@@ -2878,26 +2801,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/969c609c-0618-474a-9dd3-82e5d0617a46?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/969c609c-0618-474a-9dd3-82e5d0617a46","name":"969c609c-0618-474a-9dd3-82e5d0617a46","status":"Succeeded","startTime":"2020-09-09T15:46:21.4686283Z","endTime":"2020-09-09T15:46:26.8391016Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:13:59 GMT
+ - Wed, 09 Sep 2020 15:46:52 GMT
expires:
- '-1'
pragma:
@@ -2929,12 +2850,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2948,7 +2869,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:00 GMT
+ - Wed, 09 Sep 2020 15:46:52 GMT
expires:
- '-1'
pragma:
@@ -2980,12 +2901,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -2999,7 +2920,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:02 GMT
+ - Wed, 09 Sep 2020 15:46:54 GMT
expires:
- '-1'
pragma:
@@ -3031,12 +2952,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3050,7 +2971,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:03 GMT
+ - Wed, 09 Sep 2020 15:46:55 GMT
expires:
- '-1'
pragma:
@@ -3082,12 +3003,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3101,7 +3022,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:05 GMT
+ - Wed, 09 Sep 2020 15:46:57 GMT
expires:
- '-1'
pragma:
@@ -3133,12 +3054,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3152,7 +3073,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:06 GMT
+ - Wed, 09 Sep 2020 15:46:58 GMT
expires:
- '-1'
pragma:
@@ -3184,12 +3105,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3203,7 +3124,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:08 GMT
+ - Wed, 09 Sep 2020 15:46:59 GMT
expires:
- '-1'
pragma:
@@ -3235,12 +3156,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3254,7 +3175,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:10 GMT
+ - Wed, 09 Sep 2020 15:47:01 GMT
expires:
- '-1'
pragma:
@@ -3286,12 +3207,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3305,7 +3226,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:11 GMT
+ - Wed, 09 Sep 2020 15:47:02 GMT
expires:
- '-1'
pragma:
@@ -3337,12 +3258,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3356,7 +3277,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:13 GMT
+ - Wed, 09 Sep 2020 15:47:04 GMT
expires:
- '-1'
pragma:
@@ -3388,12 +3309,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3407,7 +3328,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:14 GMT
+ - Wed, 09 Sep 2020 15:47:05 GMT
expires:
- '-1'
pragma:
@@ -3439,12 +3360,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3458,7 +3379,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:16 GMT
+ - Wed, 09 Sep 2020 15:47:07 GMT
expires:
- '-1'
pragma:
@@ -3490,12 +3411,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3509,7 +3430,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:17 GMT
+ - Wed, 09 Sep 2020 15:47:08 GMT
expires:
- '-1'
pragma:
@@ -3541,12 +3462,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3560,7 +3481,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:19 GMT
+ - Wed, 09 Sep 2020 15:47:09 GMT
expires:
- '-1'
pragma:
@@ -3592,12 +3513,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3611,7 +3532,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:21 GMT
+ - Wed, 09 Sep 2020 15:47:11 GMT
expires:
- '-1'
pragma:
@@ -3643,12 +3564,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3662,7 +3583,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:22 GMT
+ - Wed, 09 Sep 2020 15:47:12 GMT
expires:
- '-1'
pragma:
@@ -3694,12 +3615,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3713,7 +3634,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:25 GMT
+ - Wed, 09 Sep 2020 15:47:13 GMT
expires:
- '-1'
pragma:
@@ -3745,12 +3666,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3764,7 +3685,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:26 GMT
+ - Wed, 09 Sep 2020 15:47:15 GMT
expires:
- '-1'
pragma:
@@ -3796,12 +3717,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3815,7 +3736,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:28 GMT
+ - Wed, 09 Sep 2020 15:47:16 GMT
expires:
- '-1'
pragma:
@@ -3847,12 +3768,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3866,7 +3787,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:29 GMT
+ - Wed, 09 Sep 2020 15:47:18 GMT
expires:
- '-1'
pragma:
@@ -3898,12 +3819,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3917,7 +3838,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:31 GMT
+ - Wed, 09 Sep 2020 15:47:19 GMT
expires:
- '-1'
pragma:
@@ -3949,12 +3870,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -3968,7 +3889,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:32 GMT
+ - Wed, 09 Sep 2020 15:47:20 GMT
expires:
- '-1'
pragma:
@@ -4000,12 +3921,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4019,7 +3940,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:34 GMT
+ - Wed, 09 Sep 2020 15:47:22 GMT
expires:
- '-1'
pragma:
@@ -4051,12 +3972,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4070,7 +3991,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:35 GMT
+ - Wed, 09 Sep 2020 15:47:23 GMT
expires:
- '-1'
pragma:
@@ -4102,12 +4023,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4121,7 +4042,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:37 GMT
+ - Wed, 09 Sep 2020 15:47:25 GMT
expires:
- '-1'
pragma:
@@ -4153,12 +4074,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4172,7 +4093,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:38 GMT
+ - Wed, 09 Sep 2020 15:47:26 GMT
expires:
- '-1'
pragma:
@@ -4204,12 +4125,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4223,7 +4144,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:40 GMT
+ - Wed, 09 Sep 2020 15:47:27 GMT
expires:
- '-1'
pragma:
@@ -4255,12 +4176,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4274,7 +4195,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:41 GMT
+ - Wed, 09 Sep 2020 15:47:29 GMT
expires:
- '-1'
pragma:
@@ -4306,12 +4227,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4325,7 +4246,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:43 GMT
+ - Wed, 09 Sep 2020 15:47:30 GMT
expires:
- '-1'
pragma:
@@ -4357,12 +4278,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4376,7 +4297,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:45 GMT
+ - Wed, 09 Sep 2020 15:47:32 GMT
expires:
- '-1'
pragma:
@@ -4408,12 +4329,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4427,7 +4348,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:46 GMT
+ - Wed, 09 Sep 2020 15:47:33 GMT
expires:
- '-1'
pragma:
@@ -4459,12 +4380,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4478,7 +4399,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:48 GMT
+ - Wed, 09 Sep 2020 15:47:34 GMT
expires:
- '-1'
pragma:
@@ -4510,12 +4431,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4529,7 +4450,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:49 GMT
+ - Wed, 09 Sep 2020 15:47:37 GMT
expires:
- '-1'
pragma:
@@ -4561,12 +4482,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4580,7 +4501,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:51 GMT
+ - Wed, 09 Sep 2020 15:47:38 GMT
expires:
- '-1'
pragma:
@@ -4612,12 +4533,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4631,7 +4552,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:52 GMT
+ - Wed, 09 Sep 2020 15:47:40 GMT
expires:
- '-1'
pragma:
@@ -4663,12 +4584,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4682,7 +4603,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:54 GMT
+ - Wed, 09 Sep 2020 15:47:41 GMT
expires:
- '-1'
pragma:
@@ -4714,12 +4635,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4733,7 +4654,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:55 GMT
+ - Wed, 09 Sep 2020 15:47:42 GMT
expires:
- '-1'
pragma:
@@ -4765,12 +4686,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4784,7 +4705,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:57 GMT
+ - Wed, 09 Sep 2020 15:47:44 GMT
expires:
- '-1'
pragma:
@@ -4816,12 +4737,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4835,7 +4756,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:14:58 GMT
+ - Wed, 09 Sep 2020 15:47:45 GMT
expires:
- '-1'
pragma:
@@ -4867,12 +4788,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4886,7 +4807,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:00 GMT
+ - Wed, 09 Sep 2020 15:47:47 GMT
expires:
- '-1'
pragma:
@@ -4918,12 +4839,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4937,7 +4858,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:01 GMT
+ - Wed, 09 Sep 2020 15:47:48 GMT
expires:
- '-1'
pragma:
@@ -4969,12 +4890,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -4988,7 +4909,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:03 GMT
+ - Wed, 09 Sep 2020 15:47:49 GMT
expires:
- '-1'
pragma:
@@ -5020,12 +4941,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5039,7 +4960,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:05 GMT
+ - Wed, 09 Sep 2020 15:47:51 GMT
expires:
- '-1'
pragma:
@@ -5071,12 +4992,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5090,7 +5011,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:06 GMT
+ - Wed, 09 Sep 2020 15:47:52 GMT
expires:
- '-1'
pragma:
@@ -5122,12 +5043,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5141,7 +5062,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:08 GMT
+ - Wed, 09 Sep 2020 15:47:54 GMT
expires:
- '-1'
pragma:
@@ -5173,12 +5094,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5192,7 +5113,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:09 GMT
+ - Wed, 09 Sep 2020 15:47:55 GMT
expires:
- '-1'
pragma:
@@ -5224,12 +5145,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5243,7 +5164,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:11 GMT
+ - Wed, 09 Sep 2020 15:47:56 GMT
expires:
- '-1'
pragma:
@@ -5275,12 +5196,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5294,7 +5215,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:12 GMT
+ - Wed, 09 Sep 2020 15:47:58 GMT
expires:
- '-1'
pragma:
@@ -5326,12 +5247,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5345,7 +5266,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:14 GMT
+ - Wed, 09 Sep 2020 15:47:59 GMT
expires:
- '-1'
pragma:
@@ -5377,12 +5298,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5396,7 +5317,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:16 GMT
+ - Wed, 09 Sep 2020 15:48:00 GMT
expires:
- '-1'
pragma:
@@ -5428,12 +5349,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5447,7 +5368,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:17 GMT
+ - Wed, 09 Sep 2020 15:48:02 GMT
expires:
- '-1'
pragma:
@@ -5479,12 +5400,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5498,7 +5419,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:19 GMT
+ - Wed, 09 Sep 2020 15:48:03 GMT
expires:
- '-1'
pragma:
@@ -5530,12 +5451,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5549,7 +5470,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:20 GMT
+ - Wed, 09 Sep 2020 15:48:04 GMT
expires:
- '-1'
pragma:
@@ -5581,12 +5502,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5600,7 +5521,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:22 GMT
+ - Wed, 09 Sep 2020 15:48:06 GMT
expires:
- '-1'
pragma:
@@ -5632,12 +5553,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5651,7 +5572,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:23 GMT
+ - Wed, 09 Sep 2020 15:48:07 GMT
expires:
- '-1'
pragma:
@@ -5683,12 +5604,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5702,7 +5623,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:25 GMT
+ - Wed, 09 Sep 2020 15:48:09 GMT
expires:
- '-1'
pragma:
@@ -5734,12 +5655,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5753,7 +5674,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:27 GMT
+ - Wed, 09 Sep 2020 15:48:10 GMT
expires:
- '-1'
pragma:
@@ -5785,12 +5706,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5804,7 +5725,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:28 GMT
+ - Wed, 09 Sep 2020 15:48:11 GMT
expires:
- '-1'
pragma:
@@ -5836,12 +5757,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5855,7 +5776,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:30 GMT
+ - Wed, 09 Sep 2020 15:48:13 GMT
expires:
- '-1'
pragma:
@@ -5887,12 +5808,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5906,7 +5827,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:31 GMT
+ - Wed, 09 Sep 2020 15:48:14 GMT
expires:
- '-1'
pragma:
@@ -5938,12 +5859,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -5957,7 +5878,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:33 GMT
+ - Wed, 09 Sep 2020 15:48:15 GMT
expires:
- '-1'
pragma:
@@ -5989,12 +5910,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -6008,7 +5929,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:34 GMT
+ - Wed, 09 Sep 2020 15:48:17 GMT
expires:
- '-1'
pragma:
@@ -6040,12 +5961,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
@@ -6059,7 +5980,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:36 GMT
+ - Wed, 09 Sep 2020 15:48:18 GMT
expires:
- '-1'
pragma:
@@ -6091,15 +6012,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
@@ -6110,7 +6031,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:39 GMT
+ - Wed, 09 Sep 2020 15:48:20 GMT
expires:
- '-1'
pragma:
@@ -6141,29 +6062,35 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '0'
+ Content-Type:
+ - application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: ''
headers:
access-control-expose-headers:
- Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/a3f17608-1977-4b7c-a1d2-eb8dd174aa80?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '111'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Sun, 09 Aug 2020 20:15:40 GMT
+ - Wed, 09 Sep 2020 15:48:20 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/a3f17608-1977-4b7c-a1d2-eb8dd174aa80?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -6172,17 +6099,15 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
body: null
headers:
@@ -6193,15 +6118,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
@@ -6212,7 +6137,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:42 GMT
+ - Wed, 09 Sep 2020 15:48:21 GMT
expires:
- '-1'
pragma:
@@ -6244,15 +6169,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
@@ -6263,7 +6188,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:43 GMT
+ - Wed, 09 Sep 2020 15:48:22 GMT
expires:
- '-1'
pragma:
@@ -6295,15 +6220,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
@@ -6314,7 +6239,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:45 GMT
+ - Wed, 09 Sep 2020 15:48:23 GMT
expires:
- '-1'
pragma:
@@ -6346,15 +6271,15 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
@@ -6365,7 +6290,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:46 GMT
+ - Wed, 09 Sep 2020 15:48:25 GMT
expires:
- '-1'
pragma:
@@ -6397,26 +6322,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '109'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:48 GMT
+ - Wed, 09 Sep 2020 15:48:26 GMT
expires:
- '-1'
pragma:
@@ -6448,26 +6373,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/a3f17608-1977-4b7c-a1d2-eb8dd174aa80?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/a3f17608-1977-4b7c-a1d2-eb8dd174aa80","name":"a3f17608-1977-4b7c-a1d2-eb8dd174aa80","status":"Succeeded","startTime":"2020-09-09T15:48:21.1758984Z","endTime":"2020-09-09T15:48:27.5657312Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '569'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:50 GMT
+ - Wed, 09 Sep 2020 15:48:51 GMT
expires:
- '-1'
pragma:
@@ -6499,26 +6422,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A46%3A26.8439786Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"westus"}},"provisioningState":"Succeeded","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '1891'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:51 GMT
+ - Wed, 09 Sep 2020 15:48:58 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A46%3A26.8439786Z'"
expires:
- '-1'
pragma:
@@ -6550,26 +6475,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A48%3A27.5468114Z''\"","location":"westus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"6ee9c18c-837c-4414-c339-dca35489a675","fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"volumeType":"","dataProtection":{"replication":{"replicationId":"abc7a428-2310-8686-0321-38d98692aa4a","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_dd6abdd9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '2011'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:53 GMT
+ - Wed, 09 Sep 2020 15:48:59 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A48%3A27.5468114Z'"
expires:
- '-1'
pragma:
@@ -6600,29 +6527,33 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: ''
headers:
access-control-expose-headers:
- Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/4e01555f-929e-43ca-8760-d8b45198591e?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '111'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Sun, 09 Aug 2020 20:15:54 GMT
+ - Wed, 09 Sep 2020 15:48:59 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/4e01555f-929e-43ca-8760-d8b45198591e?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -6631,17 +6562,15 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1197'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
body: null
headers:
@@ -6652,26 +6581,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '109'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:56 GMT
+ - Wed, 09 Sep 2020 15:49:00 GMT
expires:
- '-1'
pragma:
@@ -6703,26 +6632,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '109'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:57 GMT
+ - Wed, 09 Sep 2020 15:49:01 GMT
expires:
- '-1'
pragma:
@@ -6754,26 +6683,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '119'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:15:59 GMT
+ - Wed, 09 Sep 2020 15:49:03 GMT
expires:
- '-1'
pragma:
@@ -6795,59 +6724,6 @@ interactions:
status:
code: 200
message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Length:
- - '0'
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
- response:
- body:
- string: ''
- headers:
- access-control-expose-headers:
- - Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/14269b69-effd-4d45-a774-22411036fbb2?api-version=2020-02-01
- cache-control:
- - no-cache
- content-length:
- - '0'
- date:
- - Sun, 09 Aug 2020 20:16:00 GMT
- expires:
- - '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/14269b69-effd-4d45-a774-22411036fbb2?api-version=2020-02-01&operationResultResponseType=Location
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
- request:
body: null
headers:
@@ -6858,26 +6734,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/4e01555f-929e-43ca-8760-d8b45198591e?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/4e01555f-929e-43ca-8760-d8b45198591e","name":"4e01555f-929e-43ca-8760-d8b45198591e","status":"Succeeded","startTime":"2020-09-09T15:48:59.6082389Z","endTime":"2020-09-09T15:49:02.971981Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '568'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:01 GMT
+ - Wed, 09 Sep 2020 15:49:30 GMT
expires:
- '-1'
pragma:
@@ -6908,29 +6782,35 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '0'
+ Content-Type:
+ - application/json; charset=utf-8
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: ''
headers:
access-control-expose-headers:
- Request-Context
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/c7a00cdf-bc9a-42a5-a098-abbc908b08ee?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- - '111'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Sun, 09 Aug 2020 20:16:02 GMT
+ - Wed, 09 Sep 2020 15:49:33 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/c7a00cdf-bc9a-42a5-a098-abbc908b08ee?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -6939,17 +6819,15 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1196'
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
body: null
headers:
@@ -6960,26 +6838,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '119'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:04 GMT
+ - Wed, 09 Sep 2020 15:49:33 GMT
expires:
- '-1'
pragma:
@@ -7011,26 +6889,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '111'
+ - '119'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:05 GMT
+ - Wed, 09 Sep 2020 15:49:34 GMT
expires:
- '-1'
pragma:
@@ -7062,26 +6940,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}'
+ string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '109'
+ - '119'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:07 GMT
+ - Wed, 09 Sep 2020 15:49:36 GMT
expires:
- '-1'
pragma:
@@ -7113,24 +6991,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/14269b69-effd-4d45-a774-22411036fbb2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/14269b69-effd-4d45-a774-22411036fbb2","name":"14269b69-effd-4d45-a774-22411036fbb2","status":"Succeeded","startTime":"2020-08-09T20:16:00.8210071Z","endTime":"2020-08-09T20:16:08.6678646Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
+ string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '582'
+ - '119'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:32 GMT
+ - Wed, 09 Sep 2020 15:49:37 GMT
expires:
- '-1'
pragma:
@@ -7162,28 +7042,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A13%3A18.0632582Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"dataProtection":{"replication":{"endPointType":"Src","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2","remoteVolumeRegion":"southcentralusstage"}},"provisioningState":"Succeeded","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20352","errorMessage":""}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1726'
+ - '109'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:39 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A13%3A18.0632582Z'"
+ - Wed, 09 Sep 2020 15:49:39 GMT
expires:
- '-1'
pragma:
@@ -7215,28 +7093,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/c7a00cdf-bc9a-42a5-a098-abbc908b08ee?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A16%3A08.6630174Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"","dataProtection":{"replication":{"replicationId":"26150799-8672-996b-73e7-ea9e9647d096","endPointType":"Dst","replicationSchedule":"_10minutely","remoteVolumeResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","remoteVolumeRegion":"westus2stage"}},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/c7a00cdf-bc9a-42a5-a098-abbc908b08ee","name":"c7a00cdf-bc9a-42a5-a098-abbc908b08ee","status":"Succeeded","startTime":"2020-09-09T15:49:33.5174738Z","endTime":"2020-09-09T15:49:39.9559272Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1806'
+ - '569'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:39 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A16%3A08.6630174Z'"
+ - Wed, 09 Sep 2020 15:50:04 GMT
expires:
- '-1'
pragma:
@@ -7270,12 +7144,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
string: ''
@@ -7283,17 +7157,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/294a4c94-af17-476a-8172-b2afee7df187?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/71150b0f-9aac-41ac-814f-6395788b61a6?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 20:16:41 GMT
+ - Wed, 09 Sep 2020 15:50:09 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/294a4c94-af17-476a-8172-b2afee7df187?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/71150b0f-9aac-41ac-814f-6395788b61a6?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -7305,7 +7179,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -7321,26 +7195,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/71150b0f-9aac-41ac-814f-6395788b61a6?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/71150b0f-9aac-41ac-814f-6395788b61a6","name":"71150b0f-9aac-41ac-814f-6395788b61a6","status":"Succeeded","startTime":"2020-09-09T15:50:10.0320729Z","endTime":"2020-09-09T15:50:11.4696793Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '109'
+ - '569'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:42 GMT
+ - Wed, 09 Sep 2020 15:50:41 GMT
expires:
- '-1'
pragma:
@@ -7372,26 +7244,27 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"17312","errorMessage":""}'
+ string: '{"error":{"code":"VolumeReplicationMissing","message":"Volume Replication
+ was not found for volume: ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2''"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '109'
+ - '308'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:43 GMT
+ - Wed, 09 Sep 2020 15:50:41 GMT
expires:
- '-1'
pragma:
@@ -7402,17 +7275,13 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
x-powered-by:
- ASP.NET
status:
- code: 200
- message: OK
+ code: 404
+ message: Not Found
- request:
body: null
headers:
@@ -7423,26 +7292,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-09-09T15%3A50%3A14.9411003Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"33858606-accd-8048-4736-bd971416dc9a","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4"}],"volumeType":"","dataProtection":{},"provisioningState":"Succeeded","fileSystemId":"33858606-accd-8048-4736-bd971416dc9a","name":"sdk-py-tests-vol-1","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_e6db99cacbc54bf6b9f6acb8edf404c5_bf73fb7d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464/subnets/default","snapshotDirectoryVisible":true,"kerberosEnabled":false,"securityStyle":"Unix"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '119'
+ - '1610'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:16:45 GMT
+ - Wed, 09 Sep 2020 15:50:43 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A50%3A14.9411003Z'"
expires:
- '-1'
pragma:
@@ -7474,24 +7345,28 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/294a4c94-af17-476a-8172-b2afee7df187?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/294a4c94-af17-476a-8172-b2afee7df187","name":"294a4c94-af17-476a-8172-b2afee7df187","status":"Succeeded","startTime":"2020-08-09T20:16:41.7752447Z","endTime":"2020-08-09T20:16:48.9304845Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-09-09T15%3A50%3A11.471636Z''\"","location":"westus","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"6ee9c18c-837c-4414-c339-dca35489a675","fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.7.0.4","smbServerFQDN":""}],"throughputMibps":0.0,"volumeType":"","dataProtection":{},"fileSystemId":"6ee9c18c-837c-4414-c339-dca35489a675","name":"sdk-py-tests-vol-2","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}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_ff7711adcdb311ea9944ba3bf91f31b5_dd6abdd9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa3vnet464-R/subnets/default","kerberosEnabled":false,"securityStyle":"Unix","provisioningState":"Succeeded"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '582'
+ - '1624'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:13 GMT
+ - Wed, 09 Sep 2020 15:50:44 GMT
+ etag:
+ - W/"datetime'2020-09-09T15%3A50%3A11.471636Z'"
expires:
- '-1'
pragma:
@@ -7525,12 +7400,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
string: ''
@@ -7538,17 +7413,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/384accc4-a314-415c-abd5-c1d386fef04c?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 20:17:16 GMT
+ - Wed, 09 Sep 2020 15:50:45 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/384accc4-a314-415c-abd5-c1d386fef04c?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -7559,8 +7434,8 @@ interactions:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
x-powered-by:
- ASP.NET
status:
@@ -7576,26 +7451,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37","name":"da2d249e-17a1-4ae2-8e4a-a837012fcd37","status":"Deleting","startTime":"2020-09-09T15:50:45.160396Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '119'
+ - '557'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:17 GMT
+ - Wed, 09 Sep 2020 15:51:16 GMT
expires:
- '-1'
pragma:
@@ -7627,26 +7500,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37","name":"da2d249e-17a1-4ae2-8e4a-a837012fcd37","status":"Deleting","startTime":"2020-09-09T15:50:45.160396Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '119'
+ - '557'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:18 GMT
+ - Wed, 09 Sep 2020 15:51:46 GMT
expires:
- '-1'
pragma:
@@ -7678,26 +7549,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Transferring","mirrorState":"Mirrored","totalProgress":"17312","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37","name":"da2d249e-17a1-4ae2-8e4a-a837012fcd37","status":"Deleting","startTime":"2020-09-09T15:50:45.160396Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '119'
+ - '557'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:20 GMT
+ - Wed, 09 Sep 2020 15:52:16 GMT
expires:
- '-1'
pragma:
@@ -7729,26 +7598,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20352","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/da2d249e-17a1-4ae2-8e4a-a837012fcd37","name":"da2d249e-17a1-4ae2-8e4a-a837012fcd37","status":"Succeeded","startTime":"2020-09-09T15:50:45.160396Z","endTime":"2020-09-09T15:52:21.0917912Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '109'
+ - '568'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:21 GMT
+ - Wed, 09 Sep 2020 15:52:46 GMT
expires:
- '-1'
pragma:
@@ -7780,45 +7647,39 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/384accc4-a314-415c-abd5-c1d386fef04c?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/384accc4-a314-415c-abd5-c1d386fef04c","name":"384accc4-a314-415c-abd5-c1d386fef04c","status":"Succeeded","startTime":"2020-08-09T20:17:16.5331312Z","endTime":"2020-08-09T20:17:22.6135923Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2''
+ under resource group ''sdk-test-qa2-R'' was not found. For more details please
+ go to https://aka.ms/ARMResourceNotFoundFix"}}'
headers:
- access-control-expose-headers:
- - Request-Context
cache-control:
- no-cache
content-length:
- - '582'
+ - '297'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:48 GMT
+ - Wed, 09 Sep 2020 15:56:08 GMT
expires:
- '-1'
pragma:
- no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
+ x-ms-failure-cause:
+ - gateway
status:
- code: 200
- message: OK
+ code: 404
+ message: Not Found
- request:
body: null
headers:
@@ -7831,12 +7692,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
string: ''
@@ -7844,17 +7705,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/010a0e62-14a8-4699-be94-97465502da07?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/8a873c16-ff1e-4142-87b5-20de853e5a0a?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 20:17:52 GMT
+ - Wed, 09 Sep 2020 15:56:19 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/010a0e62-14a8-4699-be94-97465502da07?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/8a873c16-ff1e-4142-87b5-20de853e5a0a?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -7865,8 +7726,8 @@ interactions:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
x-powered-by:
- ASP.NET
status:
@@ -7882,26 +7743,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/8a873c16-ff1e-4142-87b5-20de853e5a0a?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Broken","totalProgress":"20352","errorMessage":""}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/8a873c16-ff1e-4142-87b5-20de853e5a0a","name":"8a873c16-ff1e-4142-87b5-20de853e5a0a","status":"Succeeded","startTime":"2020-09-09T15:56:19.367604Z","endTime":"2020-09-09T15:56:19.6488697Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '109'
+ - '541'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:53 GMT
+ - Wed, 09 Sep 2020 15:56:50 GMT
expires:
- '-1'
pragma:
@@ -7932,48 +7791,36 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
- string: '{"healthy":true,"relationshipStatus":"Idle","mirrorState":"Uninitialized","totalProgress":"20352","errorMessage":""}'
+ string: ''
headers:
- access-control-expose-headers:
- - Request-Context
cache-control:
- no-cache
- content-length:
- - '116'
- content-type:
- - application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:54 GMT
+ - Wed, 09 Sep 2020 15:57:00 GMT
expires:
- '-1'
pragma:
- no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14998'
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -7983,45 +7830,36 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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=2020-02-01
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
- string: '{"error":{"code":"VolumeReplicationMissing","message":"Volume Replication
- was not found for volume: ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2''"}}'
+ string: ''
headers:
- access-control-expose-headers:
- - Request-Context
cache-control:
- no-cache
- content-length:
- - '308'
- content-type:
- - application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:56 GMT
+ - Wed, 09 Sep 2020 15:57:10 GMT
expires:
- '-1'
pragma:
- no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14997'
status:
- code: 404
- message: Not Found
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -8031,103 +7869,36 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
+ Content-Length:
+ - '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/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/\"datetime''2020-08-09T20%3A17%3A57.6798418Z''\"","location":"westus2stage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.9.4","smbServerFQDN":""}],"volumeType":"","dataProtection":{},"provisioningState":"Succeeded","fileSystemId":"e22c3126-6f82-51fa-87c7-b0cd770afd91","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_307950bbb92a11e9a7f006ddec9cd511_d23ac2fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464/subnets/default","snapshotDirectoryVisible":true}}'
+ string: ''
headers:
- access-control-expose-headers:
- - Request-Context
cache-control:
- no-cache
- content-length:
- - '1432'
- content-type:
- - application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:17:59 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A17%3A57.6798418Z'"
+ - Wed, 09 Sep 2020 15:57:21 GMT
expires:
- '-1'
pragma:
- no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-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/\"datetime''2020-08-09T20%3A17%3A55.4939204Z''\"","location":"southcentralusstage","properties":{"mountTargets":[{"provisioningState":"","mountTargetId":"c464c07d-26d6-f126-220d-c35b2e483777","fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","startIp":"","endIp":"","gateway":"","netmask":"","subnet":"","ipAddress":"10.1.23.4","smbServerFQDN":""}],"volumeType":"","dataProtection":{},"fileSystemId":"c464c07d-26d6-f126-220d-c35b2e483777","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","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"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_93ade68ee53011e9a696c27beff6b5ea_2bbe07e3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.Network/virtualNetworks/sdktestqa2vnet464-R/subnets/default","provisioningState":"Succeeded"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '1414'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 20:17:59 GMT
- etag:
- - W/"datetime'2020-08-09T20%3A17%3A55.4939204Z'"
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14996'
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -8140,145 +7911,33 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
string: ''
headers:
- access-control-expose-headers:
- - Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/478fe7eb-d1dc-4cb7-8426-31a7090dc379?api-version=2020-02-01
cache-control:
- no-cache
- content-length:
- - '0'
date:
- - Sun, 09 Aug 2020 20:18:01 GMT
+ - Wed, 09 Sep 2020 15:57:31 GMT
expires:
- '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/478fe7eb-d1dc-4cb7-8426-31a7090dc379?api-version=2020-02-01&operationResultResponseType=Location
pragma:
- no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14992'
- x-powered-by:
- - ASP.NET
- status:
- code: 202
- message: Accepted
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/010a0e62-14a8-4699-be94-97465502da07?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/010a0e62-14a8-4699-be94-97465502da07","name":"010a0e62-14a8-4699-be94-97465502da07","status":"Succeeded","startTime":"2020-08-09T20:17:52.59268Z","endTime":"2020-08-09T20:17:55.4946299Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '580'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 20:18:24 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/478fe7eb-d1dc-4cb7-8426-31a7090dc379?api-version=2020-02-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/478fe7eb-d1dc-4cb7-8426-31a7090dc379","name":"478fe7eb-d1dc-4cb7-8426-31a7090dc379","status":"Succeeded","startTime":"2020-08-09T20:18:01.8684465Z","endTime":"2020-08-09T20:18:08.0886099Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2"}}'
- headers:
- access-control-expose-headers:
- - Request-Context
- cache-control:
- - no-cache
- content-length:
- - '582'
- content-type:
- - application/json; charset=utf-8
- date:
- - Sun, 09 Aug 2020 20:18:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- request-context:
- - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
+ - '14995'
status:
- code: 200
- message: OK
+ code: 204
+ message: No Content
- request:
body: null
headers:
@@ -8289,26 +7948,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-06-01
response:
body:
- string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2/volumes/sdk-py-tests-vol-2''
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2''
under resource group ''sdk-test-qa2-R'' was not found. For more details please
go to https://aka.ms/ARMResourceNotFoundFix"}}'
headers:
cache-control:
- no-cache
content-length:
- - '297'
+ - '270'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:21:55 GMT
+ - Wed, 09 Sep 2020 15:57:41 GMT
expires:
- '-1'
pragma:
@@ -8334,12 +7993,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-06-01
response:
body:
string: ''
@@ -8347,17 +8006,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba683cf5-1ba7-4b79-af4b-15358814ee81?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/263a6c39-ea2f-45b8-9581-7c16491f22d9?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 20:22:07 GMT
+ - Wed, 09 Sep 2020 15:57:42 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba683cf5-1ba7-4b79-af4b-15358814ee81?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/263a6c39-ea2f-45b8-9581-7c16491f22d9?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -8369,7 +8028,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14999'
+ - '14994'
x-powered-by:
- ASP.NET
status:
@@ -8385,24 +8044,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba683cf5-1ba7-4b79-af4b-15358814ee81?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/263a6c39-ea2f-45b8-9581-7c16491f22d9?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/ba683cf5-1ba7-4b79-af4b-15358814ee81","name":"ba683cf5-1ba7-4b79-af4b-15358814ee81","status":"Succeeded","startTime":"2020-08-09T20:22:07.898032Z","endTime":"2020-08-09T20:22:08.5392776Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus/operationResults/263a6c39-ea2f-45b8-9581-7c16491f22d9","name":"263a6c39-ea2f-45b8-9581-7c16491f22d9","status":"Succeeded","startTime":"2020-09-09T15:57:43.3538278Z","endTime":"2020-09-09T15:57:43.4319691Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '554'
+ - '508'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:22:40 GMT
+ - Wed, 09 Sep 2020 15:58:14 GMT
expires:
- '-1'
pragma:
@@ -8424,162 +8083,6 @@ interactions:
status:
code: 200
message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Length:
- - '0'
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
- response:
- body:
- string: ''
- headers:
- cache-control:
- - no-cache
- date:
- - Sun, 09 Aug 2020 20:22:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-deletes:
- - '14998'
- status:
- code: 204
- message: No Content
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Length:
- - '0'
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
- response:
- body:
- string: ''
- headers:
- cache-control:
- - no-cache
- date:
- - Sun, 09 Aug 2020 20:23:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-deletes:
- - '14997'
- status:
- code: 204
- message: No Content
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Length:
- - '0'
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
- response:
- body:
- string: ''
- headers:
- cache-control:
- - no-cache
- date:
- - Sun, 09 Aug 2020 20:23:13 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-deletes:
- - '14996'
- status:
- code: 204
- message: No Content
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- Connection:
- - keep-alive
- Content-Length:
- - '0'
- User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
- response:
- body:
- string: ''
- headers:
- cache-control:
- - no-cache
- date:
- - Sun, 09 Aug 2020 20:23:23 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-deletes:
- - '14995'
- status:
- code: 204
- message: No Content
- request:
body: null
headers:
@@ -8590,26 +8093,26 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-06-01
response:
body:
- string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2/capacityPools/sdk-py-tests-pool-2''
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2''
under resource group ''sdk-test-qa2-R'' was not found. For more details please
go to https://aka.ms/ARMResourceNotFoundFix"}}'
headers:
cache-control:
- no-cache
content-length:
- - '270'
+ - '236'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:23:35 GMT
+ - Wed, 09 Sep 2020 15:58:16 GMT
expires:
- '-1'
pragma:
@@ -8635,12 +8138,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: ''
@@ -8648,17 +8151,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c81a40fc-a8ef-4bd8-aba6-883167f7248b?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 20:23:37 GMT
+ - Wed, 09 Sep 2020 15:58:17 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c81a40fc-a8ef-4bd8-aba6-883167f7248b?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -8670,7 +8173,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-deletes:
- - '14994'
+ - '14993'
x-powered-by:
- ASP.NET
status:
@@ -8686,24 +8189,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c81a40fc-a8ef-4bd8-aba6-883167f7248b?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/southcentralusstage/operationResults/c81a40fc-a8ef-4bd8-aba6-883167f7248b","name":"c81a40fc-a8ef-4bd8-aba6-883167f7248b","status":"Succeeded","startTime":"2020-08-09T20:23:36.9371256Z","endTime":"2020-08-09T20:23:37.0115434Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997","name":"ee834e03-64d8-4989-a8a3-9683119c4997","status":"Deleting","startTime":"2020-09-09T15:58:17.6989918Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '521'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:24:08 GMT
+ - Wed, 09 Sep 2020 15:58:48 GMT
expires:
- '-1'
pragma:
@@ -8735,39 +8238,45 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2-R/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997?api-version=2020-06-01
response:
body:
- string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2''
- under resource group ''sdk-test-qa2-R'' was not found. For more details please
- go to https://aka.ms/ARMResourceNotFoundFix"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997","name":"ee834e03-64d8-4989-a8a3-9683119c4997","status":"Deleting","startTime":"2020-09-09T15:58:17.6989918Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
+ access-control-expose-headers:
+ - Request-Context
cache-control:
- no-cache
content-length:
- - '236'
+ - '556'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:24:11 GMT
+ - Wed, 09 Sep 2020 15:59:18 GMT
expires:
- '-1'
pragma:
- no-cache
+ request-context:
+ - appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53
+ server:
+ - Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-failure-cause:
- - gateway
+ x-powered-by:
+ - ASP.NET
status:
- code: 404
- message: Not Found
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -8777,33 +8286,27 @@ interactions:
- gzip, deflate
Connection:
- keep-alive
- Content-Length:
- - '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
- accept-language:
- - en-US
- method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997?api-version=2020-06-01
response:
body:
- string: ''
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997","name":"ee834e03-64d8-4989-a8a3-9683119c4997","status":"Deleting","startTime":"2020-09-09T15:58:17.6989918Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1aa88921-e814-4fa4-8ac4-650c15c8cfcd?api-version=2020-02-01
cache-control:
- no-cache
content-length:
- - '0'
+ - '556'
+ content-type:
+ - application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:24:14 GMT
+ - Wed, 09 Sep 2020 15:59:49 GMT
expires:
- '-1'
- location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1aa88921-e814-4fa4-8ac4-650c15c8cfcd?api-version=2020-02-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -8812,15 +8315,17 @@ interactions:
- Microsoft-IIS/10.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-deletes:
- - '14993'
x-powered-by:
- ASP.NET
status:
- code: 202
- message: Accepted
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -8831,24 +8336,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1aa88921-e814-4fa4-8ac4-650c15c8cfcd?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/1aa88921-e814-4fa4-8ac4-650c15c8cfcd","name":"1aa88921-e814-4fa4-8ac4-650c15c8cfcd","status":"Succeeded","startTime":"2020-08-09T20:24:14.4821613Z","endTime":"2020-08-09T20:24:33.9371403Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/ee834e03-64d8-4989-a8a3-9683119c4997","name":"ee834e03-64d8-4989-a8a3-9683119c4997","status":"Succeeded","startTime":"2020-09-09T15:58:17.6989918Z","endTime":"2020-09-09T16:00:13.8814551Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '573'
+ - '567'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:24:47 GMT
+ - Wed, 09 Sep 2020 16:00:18 GMT
expires:
- '-1'
pragma:
@@ -8880,12 +8385,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1''
@@ -8899,7 +8404,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:28:09 GMT
+ - Wed, 09 Sep 2020 16:03:39 GMT
expires:
- '-1'
pragma:
@@ -8925,12 +8430,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -8938,17 +8443,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/008fcb09-6390-4165-8976-cb6440e26ea5?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be33c429-2b7a-45d8-a0ec-1dff7cf76202?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 20:28:22 GMT
+ - Wed, 09 Sep 2020 16:03:50 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/008fcb09-6390-4165-8976-cb6440e26ea5?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be33c429-2b7a-45d8-a0ec-1dff7cf76202?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -8976,24 +8481,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/008fcb09-6390-4165-8976-cb6440e26ea5?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be33c429-2b7a-45d8-a0ec-1dff7cf76202?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/008fcb09-6390-4165-8976-cb6440e26ea5","name":"008fcb09-6390-4165-8976-cb6440e26ea5","status":"Succeeded","startTime":"2020-08-09T20:28:22.4883895Z","endTime":"2020-08-09T20:28:25.4043486Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/be33c429-2b7a-45d8-a0ec-1dff7cf76202","name":"be33c429-2b7a-45d8-a0ec-1dff7cf76202","status":"Succeeded","startTime":"2020-09-09T16:03:50.9382685Z","endTime":"2020-09-09T16:03:51.4227988Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '546'
+ - '540'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:28:55 GMT
+ - Wed, 09 Sep 2020 16:04:21 GMT
expires:
- '-1'
pragma:
@@ -9027,12 +8532,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -9040,7 +8545,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 20:29:06 GMT
+ - Wed, 09 Sep 2020 16:04:31 GMT
expires:
- '-1'
pragma:
@@ -9066,12 +8571,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -9079,7 +8584,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 20:29:17 GMT
+ - Wed, 09 Sep 2020 16:04:42 GMT
expires:
- '-1'
pragma:
@@ -9105,12 +8610,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -9118,7 +8623,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 20:29:28 GMT
+ - Wed, 09 Sep 2020 16:04:52 GMT
expires:
- '-1'
pragma:
@@ -9144,12 +8649,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: ''
@@ -9157,7 +8662,7 @@ interactions:
cache-control:
- no-cache
date:
- - Sun, 09 Aug 2020 20:29:40 GMT
+ - Wed, 09 Sep 2020 16:05:02 GMT
expires:
- '-1'
pragma:
@@ -9181,12 +8686,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1''
@@ -9200,7 +8705,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:29:50 GMT
+ - Wed, 09 Sep 2020 16:05:12 GMT
expires:
- '-1'
pragma:
@@ -9226,12 +8731,12 @@ interactions:
Content-Length:
- '0'
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: ''
@@ -9239,17 +8744,17 @@ interactions:
access-control-expose-headers:
- Request-Context
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cc925341-9c12-4b4c-9301-ae88c71b571a?api-version=2020-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a92dfb2d-a7d1-457f-b435-2d09f94dad30?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Sun, 09 Aug 2020 20:29:53 GMT
+ - Wed, 09 Sep 2020 16:05:13 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cc925341-9c12-4b4c-9301-ae88c71b571a?api-version=2020-02-01&operationResultResponseType=Location
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a92dfb2d-a7d1-457f-b435-2d09f94dad30?api-version=2020-06-01&operationResultResponseType=Location
pragma:
- no-cache
request-context:
@@ -9277,24 +8782,24 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cc925341-9c12-4b4c-9301-ae88c71b571a?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a92dfb2d-a7d1-457f-b435-2d09f94dad30?api-version=2020-06-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/cc925341-9c12-4b4c-9301-ae88c71b571a","name":"cc925341-9c12-4b4c-9301-ae88c71b571a","status":"Succeeded","startTime":"2020-08-09T20:29:53.5278657Z","endTime":"2020-08-09T20:29:54.3873319Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2stage/operationResults/a92dfb2d-a7d1-457f-b435-2d09f94dad30","name":"a92dfb2d-a7d1-457f-b435-2d09f94dad30","status":"Succeeded","startTime":"2020-09-09T16:05:13.673129Z","endTime":"2020-09-09T16:05:13.7668756Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '512'
+ - '505'
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:30:26 GMT
+ - Wed, 09 Sep 2020 16:05:43 GMT
expires:
- '-1'
pragma:
@@ -9326,12 +8831,12 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.16 msrest_azure/0.4.34
- azure-mgmt-netapp/0.12.0 Azure-SDK-For-Python
+ - python/3.8.5 (macOS-10.15.5-x86_64-i386-64bit) msrest/0.6.18 msrest_azure/0.4.34
+ azure-mgmt-netapp/0.13.0 Azure-SDK-For-Python
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-test-qa2/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2020-06-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1''
@@ -9345,7 +8850,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Sun, 09 Aug 2020 20:30:28 GMT
+ - Wed, 09 Sep 2020 16:05:45 GMT
expires:
- '-1'
pragma:
diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py b/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py
index ea891ee2f767..0f3c8846673f 100644
--- a/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py
+++ b/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py
@@ -125,10 +125,10 @@ def test_patch_pool(self):
create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1)
tag = {'Tag2': 'Value1'}
- capacity_pool_patch = CapacityPoolPatch(service_level="Standard", tags=tag)
+ capacity_pool_patch = CapacityPoolPatch(qos_type="Manual", tags=tag)
pool = self.client.pools.update(capacity_pool_patch, TEST_RG, TEST_ACC_1, TEST_POOL_1).result()
- self.assertEqual(pool.service_level, "Standard")
+ self.assertEqual(pool.qos_type, "Manual")
self.assertTrue(pool.tags['Tag2'] == 'Value1')
self.client.pools.delete(TEST_RG, TEST_ACC_1, TEST_POOL_1).wait()