diff --git a/sdk/netapp/azure-mgmt-netapp/HISTORY.rst b/sdk/netapp/azure-mgmt-netapp/HISTORY.rst index a5809c56d043..191e879a0b25 100644 --- a/sdk/netapp/azure-mgmt-netapp/HISTORY.rst +++ b/sdk/netapp/azure-mgmt-netapp/HISTORY.rst @@ -3,6 +3,20 @@ Release History =============== +0.6.0 (2019-09-26) +++++++++++++++++++ + +**Features** + +- Model Snapshot has a new parameter created +- Model ExportPolicyRule has a new parameter nfsv41 +- Added operation group AzureNetAppFilesManagementClientOperationsMixin + +**Breaking changes** + +- Model Snapshot no longer has parameter creation_date +- Model ExportPolicyRule no longer has parameter nfsv4 + 0.5.0 (2019-07-03) ++++++++++++++++++ diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/__init__.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/__init__.py index 0f7bd5bf8436..391b8a6dbd70 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/__init__.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/__init__.py @@ -9,10 +9,11 @@ # regenerated. # -------------------------------------------------------------------------- -from .azure_net_app_files_management_client import AzureNetAppFilesManagementClient -from .version import VERSION +from ._configuration import AzureNetAppFilesManagementClientConfiguration +from ._azure_net_app_files_management_client import AzureNetAppFilesManagementClient +__all__ = ['AzureNetAppFilesManagementClient', 'AzureNetAppFilesManagementClientConfiguration'] -__all__ = ['AzureNetAppFilesManagementClient'] +from .version import VERSION __version__ = VERSION 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 new file mode 100644 index 000000000000..b9c08cf2d8cf --- /dev/null +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_azure_net_app_files_management_client.py @@ -0,0 +1,77 @@ +# 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. +# -------------------------------------------------------------------------- + +from msrest.service_client import SDKClient +from msrest import Serializer, Deserializer + +from ._configuration import AzureNetAppFilesManagementClientConfiguration +from .operations import AzureNetAppFilesManagementClientOperationsMixin +from .operations import Operations +from .operations import AccountsOperations +from .operations import PoolsOperations +from .operations import VolumesOperations +from .operations import MountTargetsOperations +from .operations import SnapshotsOperations +from . import models + + +class AzureNetAppFilesManagementClient(AzureNetAppFilesManagementClientOperationsMixin, SDKClient): + """Microsoft NetApp Azure Resource Provider specification + + :ivar config: Configuration for client. + :vartype config: AzureNetAppFilesManagementClientConfiguration + + :ivar operations: Operations operations + :vartype operations: azure.mgmt.netapp.operations.Operations + :ivar accounts: Accounts operations + :vartype accounts: azure.mgmt.netapp.operations.AccountsOperations + :ivar pools: Pools operations + :vartype pools: azure.mgmt.netapp.operations.PoolsOperations + :ivar volumes: Volumes operations + :vartype volumes: azure.mgmt.netapp.operations.VolumesOperations + :ivar mount_targets: MountTargets operations + :vartype mount_targets: azure.mgmt.netapp.operations.MountTargetsOperations + :ivar snapshots: Snapshots operations + :vartype snapshots: azure.mgmt.netapp.operations.SnapshotsOperations + + :param credentials: Credentials needed for the client to connect to Azure. + :type credentials: :mod:`A msrestazure Credentials + object` + :param subscription_id: Subscription credentials which uniquely identify + Microsoft Azure subscription. The subscription ID forms part of the URI + for every service call. + :type subscription_id: str + :param str base_url: Service URL + """ + + def __init__( + self, credentials, subscription_id, base_url=None): + + self.config = AzureNetAppFilesManagementClientConfiguration(credentials, subscription_id, base_url) + 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 = '2019-07-01' + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + + self.operations = Operations( + self._client, self.config, self._serialize, self._deserialize) + self.accounts = AccountsOperations( + self._client, self.config, self._serialize, self._deserialize) + self.pools = PoolsOperations( + self._client, self.config, self._serialize, self._deserialize) + self.volumes = VolumesOperations( + self._client, self.config, self._serialize, self._deserialize) + self.mount_targets = MountTargetsOperations( + self._client, self.config, self._serialize, self._deserialize) + self.snapshots = SnapshotsOperations( + self._client, self.config, self._serialize, self._deserialize) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_configuration.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_configuration.py new file mode 100644 index 000000000000..f15a29999cc5 --- /dev/null +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/_configuration.py @@ -0,0 +1,50 @@ +# 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. +# -------------------------------------------------------------------------- +from msrestazure import AzureConfiguration + +from .version import VERSION + + +class AzureNetAppFilesManagementClientConfiguration(AzureConfiguration): + """Configuration for AzureNetAppFilesManagementClient + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credentials: Credentials needed for the client to connect to Azure. + :type credentials: :mod:`A msrestazure Credentials + object` + :param subscription_id: Subscription credentials which uniquely identify + Microsoft Azure subscription. The subscription ID forms part of the URI + for every service call. + :type subscription_id: str + :param str base_url: Service URL + """ + + def __init__( + self, credentials, subscription_id, base_url=None): + + if credentials is None: + raise ValueError("Parameter 'credentials' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + if not base_url: + base_url = 'https://management.azure.com' + + super(AzureNetAppFilesManagementClientConfiguration, self).__init__(base_url) + + # Starting Autorest.Python 4.0.64, make connection pool activated by default + self.keep_alive = True + + self.add_user_agent('azure-mgmt-netapp/{}'.format(VERSION)) + self.add_user_agent('Azure-SDK-For-Python') + + self.credentials = credentials + self.subscription_id = subscription_id 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 3806d141348a..13ad7cf4d730 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 @@ -10,80 +10,80 @@ # -------------------------------------------------------------------------- try: - from .operation_display_py3 import OperationDisplay - from .dimension_py3 import Dimension - from .metric_specification_py3 import MetricSpecification - from .service_specification_py3 import ServiceSpecification - from .operation_py3 import Operation - from .resource_name_availability_py3 import ResourceNameAvailability - from .resource_name_availability_request_py3 import ResourceNameAvailabilityRequest - from .active_directory_py3 import ActiveDirectory - from .net_app_account_py3 import NetAppAccount - from .net_app_account_patch_py3 import NetAppAccountPatch - from .capacity_pool_py3 import CapacityPool - from .capacity_pool_patch_py3 import CapacityPoolPatch - from .export_policy_rule_py3 import ExportPolicyRule - from .volume_properties_export_policy_py3 import VolumePropertiesExportPolicy - from .volume_py3 import Volume - from .volume_patch_properties_export_policy_py3 import VolumePatchPropertiesExportPolicy - from .volume_patch_py3 import VolumePatch - from .mount_target_py3 import MountTarget - from .snapshot_py3 import Snapshot - from .snapshot_patch_py3 import SnapshotPatch + from ._models_py3 import ActiveDirectory + from ._models_py3 import CapacityPool + from ._models_py3 import CapacityPoolPatch + from ._models_py3 import Dimension + from ._models_py3 import ExportPolicyRule + from ._models_py3 import MetricSpecification + from ._models_py3 import MountTarget + from ._models_py3 import NetAppAccount + from ._models_py3 import NetAppAccountPatch + from ._models_py3 import Operation + from ._models_py3 import OperationDisplay + from ._models_py3 import ResourceNameAvailability + from ._models_py3 import ResourceNameAvailabilityRequest + from ._models_py3 import ServiceSpecification + from ._models_py3 import Snapshot + from ._models_py3 import SnapshotPatch + from ._models_py3 import Volume + from ._models_py3 import VolumePatch + from ._models_py3 import VolumePatchPropertiesExportPolicy + from ._models_py3 import VolumePropertiesExportPolicy except (SyntaxError, ImportError): - from .operation_display import OperationDisplay - from .dimension import Dimension - from .metric_specification import MetricSpecification - from .service_specification import ServiceSpecification - from .operation import Operation - from .resource_name_availability import ResourceNameAvailability - from .resource_name_availability_request import ResourceNameAvailabilityRequest - from .active_directory import ActiveDirectory - from .net_app_account import NetAppAccount - from .net_app_account_patch import NetAppAccountPatch - from .capacity_pool import CapacityPool - from .capacity_pool_patch import CapacityPoolPatch - from .export_policy_rule import ExportPolicyRule - from .volume_properties_export_policy import VolumePropertiesExportPolicy - from .volume import Volume - from .volume_patch_properties_export_policy import VolumePatchPropertiesExportPolicy - from .volume_patch import VolumePatch - from .mount_target import MountTarget - from .snapshot import Snapshot - from .snapshot_patch import SnapshotPatch -from .operation_paged import OperationPaged -from .net_app_account_paged import NetAppAccountPaged -from .capacity_pool_paged import CapacityPoolPaged -from .volume_paged import VolumePaged -from .mount_target_paged import MountTargetPaged -from .snapshot_paged import SnapshotPaged -from .azure_net_app_files_management_client_enums import ( + from ._models import ActiveDirectory + from ._models import CapacityPool + from ._models import CapacityPoolPatch + from ._models import Dimension + from ._models import ExportPolicyRule + from ._models import MetricSpecification + from ._models import MountTarget + from ._models import NetAppAccount + from ._models import NetAppAccountPatch + from ._models import Operation + from ._models import OperationDisplay + from ._models import ResourceNameAvailability + from ._models import ResourceNameAvailabilityRequest + from ._models import ServiceSpecification + from ._models import Snapshot + from ._models import SnapshotPatch + from ._models import Volume + from ._models import VolumePatch + from ._models import VolumePatchPropertiesExportPolicy + from ._models import VolumePropertiesExportPolicy +from ._paged_models import CapacityPoolPaged +from ._paged_models import MountTargetPaged +from ._paged_models import NetAppAccountPaged +from ._paged_models import OperationPaged +from ._paged_models import SnapshotPaged +from ._paged_models import VolumePaged +from ._azure_net_app_files_management_client_enums import ( InAvailabilityReasonType, CheckNameResourceTypes, ServiceLevel, ) __all__ = [ - 'OperationDisplay', - 'Dimension', - 'MetricSpecification', - 'ServiceSpecification', - 'Operation', - 'ResourceNameAvailability', - 'ResourceNameAvailabilityRequest', 'ActiveDirectory', - 'NetAppAccount', - 'NetAppAccountPatch', 'CapacityPool', 'CapacityPoolPatch', + 'Dimension', 'ExportPolicyRule', - 'VolumePropertiesExportPolicy', - 'Volume', - 'VolumePatchPropertiesExportPolicy', - 'VolumePatch', + 'MetricSpecification', 'MountTarget', + 'NetAppAccount', + 'NetAppAccountPatch', + 'Operation', + 'OperationDisplay', + 'ResourceNameAvailability', + 'ResourceNameAvailabilityRequest', + 'ServiceSpecification', 'Snapshot', 'SnapshotPatch', + 'Volume', + 'VolumePatch', + 'VolumePatchPropertiesExportPolicy', + 'VolumePropertiesExportPolicy', 'OperationPaged', 'NetAppAccountPaged', 'CapacityPoolPaged', 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 similarity index 100% rename from sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/azure_net_app_files_management_client_enums.py rename to sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_azure_net_app_files_management_client_enums.py 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 new file mode 100644 index 000000000000..ff26baf9ab08 --- /dev/null +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models.py @@ -0,0 +1,921 @@ +# 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. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class ActiveDirectory(Model): + """Active Directory. + + :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 + :type password: str + :param domain: Name of the Active Directory domain + :type domain: str + :param dns: Comma separated list of DNS server IP addresses for the Active + Directory domain + :type dns: str + :param status: Status of the Active Directory + :type status: 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 + :param organizational_unit: The Organizational Unit (OU) within the + Windows Active Directory + :type organizational_unit: str + """ + + _attribute_map = { + 'active_directory_id': {'key': 'activeDirectoryId', 'type': 'str'}, + 'username': {'key': 'username', 'type': 'str'}, + 'password': {'key': 'password', 'type': 'str'}, + 'domain': {'key': 'domain', 'type': 'str'}, + 'dns': {'key': 'dns', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + 'smb_server_name': {'key': 'smbServerName', 'type': 'str'}, + 'organizational_unit': {'key': 'organizationalUnit', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(ActiveDirectory, self).__init__(**kwargs) + self.active_directory_id = kwargs.get('active_directory_id', None) + self.username = kwargs.get('username', None) + 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.smb_server_name = kwargs.get('smb_server_name', None) + self.organizational_unit = kwargs.get('organizational_unit', None) + + +class CapacityPool(Model): + """Capacity pool resource. + + 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: object + :ivar pool_id: poolId. UUID v4 used to identify the Pool + :vartype pool_id: str + :param size: Required. size. Provisioned size of the pool (in bytes). + Allowed values are in 4TiB chunks (value must be multiply of + 4398046511104). + :type size: long + :param service_level: Required. 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 + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'pool_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}$'}, + 'size': {'required': True, 'maximum': 549755813888000, 'minimum': 4398046511104}, + 'service_level': {'required': 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': 'object'}, + 'pool_id': {'key': 'properties.poolId', 'type': 'str'}, + 'size': {'key': 'properties.size', 'type': 'long'}, + 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(CapacityPool, 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.pool_id = None + self.size = kwargs.get('size', None) + self.service_level = kwargs.get('service_level', "Premium") + self.provisioning_state = None + + +class CapacityPoolPatch(Model): + """Capacity pool patch resource. + + 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: object + :param size: size. Provisioned size of the pool (in bytes). Allowed values + 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 + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'size': {'maximum': 549755813888000, 'minimum': 4398046511104}, + } + + _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': 'object'}, + 'size': {'key': 'properties.size', 'type': 'long'}, + 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(CapacityPoolPatch, 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.size = kwargs.get('size', 4398046511104) + self.service_level = kwargs.get('service_level', "Premium") + + +class CloudError(Model): + """CloudError. + """ + + _attribute_map = { + } + + +class Dimension(Model): + """Dimension of blobs, possibly be blob type or access tier. + + :param name: Display name of dimension. + :type name: str + :param display_name: Display name of dimension. + :type display_name: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display_name': {'key': 'displayName', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(Dimension, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.display_name = kwargs.get('display_name', None) + + +class ExportPolicyRule(Model): + """Volume Export Policy Rule. + + :param rule_index: Order index + :type rule_index: int + :param unix_read_only: Read only access + :type unix_read_only: bool + :param unix_read_write: Read and write access + :type unix_read_write: bool + :param cifs: Allows CIFS protocol + :type cifs: bool + :param nfsv3: Allows NFSv3 protocol + :type nfsv3: bool + :param nfsv41: Allows NFSv4.1 protocol + :type nfsv41: bool + :param allowed_clients: Client ingress specification as comma separated + string with IPv4 CIDRs, IPv4 host addresses and host names + :type allowed_clients: str + """ + + _attribute_map = { + 'rule_index': {'key': 'ruleIndex', 'type': 'int'}, + 'unix_read_only': {'key': 'unixReadOnly', 'type': 'bool'}, + 'unix_read_write': {'key': 'unixReadWrite', 'type': 'bool'}, + 'cifs': {'key': 'cifs', 'type': 'bool'}, + 'nfsv3': {'key': 'nfsv3', 'type': 'bool'}, + 'nfsv41': {'key': 'nfsv41', 'type': 'bool'}, + 'allowed_clients': {'key': 'allowedClients', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(ExportPolicyRule, self).__init__(**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.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) + + +class MetricSpecification(Model): + """Metric specification of operation. + + :param name: Name of metric specification. + :type name: str + :param display_name: Display name of metric specification. + :type display_name: str + :param display_description: Display description of metric specification. + :type display_description: str + :param unit: Unit could be Bytes or Count. + :type unit: str + :param dimensions: Dimensions of blobs, including blob type and access + tier. + :type dimensions: list[~azure.mgmt.netapp.models.Dimension] + :param aggregation_type: Aggregation type could be Average. + :type aggregation_type: str + :param fill_gap_with_zero: The property to decide fill gap with zero or + not. + :type fill_gap_with_zero: bool + :param category: The category this metric specification belong to, could + be Capacity. + :type category: str + :param resource_id_dimension_name_override: Account Resource Id. + :type resource_id_dimension_name_override: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display_name': {'key': 'displayName', 'type': 'str'}, + 'display_description': {'key': 'displayDescription', 'type': 'str'}, + 'unit': {'key': 'unit', 'type': 'str'}, + 'dimensions': {'key': 'dimensions', 'type': '[Dimension]'}, + 'aggregation_type': {'key': 'aggregationType', 'type': 'str'}, + 'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'}, + 'category': {'key': 'category', 'type': 'str'}, + 'resource_id_dimension_name_override': {'key': 'resourceIdDimensionNameOverride', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(MetricSpecification, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.display_name = kwargs.get('display_name', None) + self.display_description = kwargs.get('display_description', None) + self.unit = kwargs.get('unit', None) + self.dimensions = kwargs.get('dimensions', None) + self.aggregation_type = kwargs.get('aggregation_type', None) + self.fill_gap_with_zero = kwargs.get('fill_gap_with_zero', None) + self.category = kwargs.get('category', None) + self.resource_id_dimension_name_override = kwargs.get('resource_id_dimension_name_override', None) + + +class MountTarget(Model): + """Mount Target. + + 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 + :param tags: Resource tags + :type tags: object + :ivar mount_target_id: mountTargetId. UUID v4 used to identify the + MountTarget + :vartype mount_target_id: str + :param file_system_id: Required. fileSystemId. UUID v4 used to identify + the MountTarget + :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 + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'mount_target_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}$'}, + 'file_system_id': {'required': 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}$'}, + 'ip_address': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'location': {'key': 'location', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': 'object'}, + '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'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(MountTarget, self).__init__(**kwargs) + self.location = kwargs.get('location', None) + self.id = None + self.name = None + self.tags = kwargs.get('tags', None) + 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) + self.provisioning_state = None + + +class NetAppAccount(Model): + """NetApp account resource. + + 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: object + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + :param active_directories: Active Directories + :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'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': 'object'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, + } + + def __init__(self, **kwargs): + super(NetAppAccount, 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.provisioning_state = None + self.active_directories = kwargs.get('active_directories', None) + + +class NetAppAccountPatch(Model): + """NetApp account patch resource. + + 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: object + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + :param active_directories: Active Directories + :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'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': 'object'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, + } + + def __init__(self, **kwargs): + super(NetAppAccountPatch, 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.provisioning_state = None + self.active_directories = kwargs.get('active_directories', None) + + +class Operation(Model): + """Microsoft.NetApp REST API operation definition. + + :param name: Operation name: {provider}/{resource}/{operation} + :type name: str + :param display: Display metadata associated with the operation. + :type display: ~azure.mgmt.netapp.models.OperationDisplay + :param origin: The origin of operations. + :type origin: str + :param service_specification: One property of operation, include metric + specifications. + :type service_specification: + ~azure.mgmt.netapp.models.ServiceSpecification + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display': {'key': 'display', 'type': 'OperationDisplay'}, + 'origin': {'key': 'origin', 'type': 'str'}, + 'service_specification': {'key': 'properties.serviceSpecification', 'type': 'ServiceSpecification'}, + } + + def __init__(self, **kwargs): + super(Operation, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.display = kwargs.get('display', None) + self.origin = kwargs.get('origin', None) + self.service_specification = kwargs.get('service_specification', None) + + +class OperationDisplay(Model): + """Display metadata associated with the operation. + + :param provider: Service provider: Microsoft NetApp. + :type provider: str + :param resource: Resource on which the operation is performed etc. + :type resource: str + :param operation: Type of operation: get, read, delete, etc. + :type operation: str + :param description: Operation description. + :type description: str + """ + + _attribute_map = { + '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 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. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. Resource name 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.CheckNameResourceTypes + :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(ResourceNameAvailabilityRequest, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.type = kwargs.get('type', None) + self.resource_group = kwargs.get('resource_group', None) + + +class ServiceSpecification(Model): + """One property of operation, include metric specifications. + + :param metric_specifications: Metric specifications of operation. + :type metric_specifications: + list[~azure.mgmt.netapp.models.MetricSpecification] + """ + + _attribute_map = { + 'metric_specifications': {'key': 'metricSpecifications', 'type': '[MetricSpecification]'}, + } + + def __init__(self, **kwargs): + super(ServiceSpecification, self).__init__(**kwargs) + self.metric_specifications = kwargs.get('metric_specifications', None) + + +class Snapshot(Model): + """Snapshot 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 + :param tags: Resource tags + :type tags: object + :ivar snapshot_id: snapshotId. UUID v4 used to identify the Snapshot + :vartype snapshot_id: str + :param file_system_id: fileSystemId. UUID v4 used to identify the + FileSystem + :type file_system_id: str + :ivar created: name. The creation date of the snapshot + :vartype created: datetime + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'snapshot_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}$'}, + 'file_system_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}$'}, + 'created': {'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': 'object'}, + 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, + 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, + 'created': {'key': 'properties.created', 'type': 'iso-8601'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(Snapshot, 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.snapshot_id = None + self.file_system_id = kwargs.get('file_system_id', None) + self.created = None + self.provisioning_state = None + + +class SnapshotPatch(Model): + """Snapshot patch. + + :param tags: Resource tags + :type tags: object + """ + + _attribute_map = { + 'tags': {'key': 'tags', 'type': 'object'}, + } + + def __init__(self, **kwargs): + super(SnapshotPatch, self).__init__(**kwargs) + self.tags = kwargs.get('tags', None) + + +class Volume(Model): + """Volume resource. + + 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: object + :ivar file_system_id: FileSystem ID. Unique FileSystem Identifier. + :vartype file_system_id: str + :param creation_token: Required. Creation Token or File Path. A unique + file path for the volume. Used when creating mount targets + :type creation_token: str + :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 usage_threshold: Required. usageThreshold. Maximum storage quota + allowed for a file system in bytes. This is a soft quota used for alerting + only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes. + Default value: 107374182400 . + :type usage_threshold: long + :param export_policy: exportPolicy. Set of export policy rules + :type export_policy: + ~azure.mgmt.netapp.models.VolumePropertiesExportPolicy + :param protocol_types: protocolTypes. Set of protocol types + :type protocol_types: list[str] + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + :param snapshot_id: Snapshot ID. UUID v4 or resource identifier used to + identify the Snapshot. + :type snapshot_id: str + :ivar baremetal_tenant_id: Baremetal Tenant ID. Unique Baremetal Tenant + Identifier. + :vartype baremetal_tenant_id: str + :param subnet_id: Required. The Azure Resource URI for a delegated subnet. + Must have the delegation Microsoft.NetApp/volumes + :type subnet_id: str + :param mount_targets: mountTargets. List of mount targets + :type mount_targets: object + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'file_system_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}$'}, + 'creation_token': {'required': True}, + '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}|(\\?([^\/]*[\/])*)([^\/]+)$'}, + '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}, + } + + _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': 'object'}, + 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, + 'creation_token': {'key': 'properties.creationToken', 'type': 'str'}, + 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, + 'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'}, + 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePropertiesExportPolicy'}, + 'protocol_types': {'key': 'properties.protocolTypes', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, + 'baremetal_tenant_id': {'key': 'properties.baremetalTenantId', 'type': 'str'}, + 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, + 'mount_targets': {'key': 'properties.mountTargets', 'type': 'object'}, + } + + def __init__(self, **kwargs): + super(Volume, 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.file_system_id = None + self.creation_token = kwargs.get('creation_token', None) + 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.protocol_types = kwargs.get('protocol_types', None) + self.provisioning_state = None + self.snapshot_id = kwargs.get('snapshot_id', None) + self.baremetal_tenant_id = None + self.subnet_id = kwargs.get('subnet_id', None) + self.mount_targets = kwargs.get('mount_targets', None) + + +class VolumePatch(Model): + """Volume patch resource. + + 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: object + :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 usage_threshold: usageThreshold. Maximum storage quota allowed for + a file system in bytes. This is a soft quota used for alerting only. + Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes. + Default value: 107374182400 . + :type usage_threshold: long + :param export_policy: exportPolicy. Set of export policy rules + :type export_policy: + ~azure.mgmt.netapp.models.VolumePatchPropertiesExportPolicy + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'usage_threshold': {'maximum': 109951162777600, 'minimum': 107374182400}, + } + + _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': 'object'}, + 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, + 'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'}, + 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePatchPropertiesExportPolicy'}, + } + + def __init__(self, **kwargs): + super(VolumePatch, 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.service_level = kwargs.get('service_level', "Premium") + self.usage_threshold = kwargs.get('usage_threshold', 107374182400) + self.export_policy = kwargs.get('export_policy', None) + + +class VolumePatchPropertiesExportPolicy(Model): + """exportPolicy. + + Set of export policy rules. + + :param rules: Export policy rule. Export policy rule + :type rules: list[~azure.mgmt.netapp.models.ExportPolicyRule] + """ + + _attribute_map = { + 'rules': {'key': 'rules', 'type': '[ExportPolicyRule]'}, + } + + def __init__(self, **kwargs): + super(VolumePatchPropertiesExportPolicy, self).__init__(**kwargs) + self.rules = kwargs.get('rules', None) + + +class VolumePropertiesExportPolicy(Model): + """exportPolicy. + + Set of export policy rules. + + :param rules: Export policy rule. Export policy rule + :type rules: list[~azure.mgmt.netapp.models.ExportPolicyRule] + """ + + _attribute_map = { + 'rules': {'key': 'rules', 'type': '[ExportPolicyRule]'}, + } + + def __init__(self, **kwargs): + super(VolumePropertiesExportPolicy, self).__init__(**kwargs) + self.rules = kwargs.get('rules', 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 new file mode 100644 index 000000000000..b557ff5c7380 --- /dev/null +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_models_py3.py @@ -0,0 +1,921 @@ +# 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. +# -------------------------------------------------------------------------- + +from msrest.serialization import Model + + +class ActiveDirectory(Model): + """Active Directory. + + :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 + :type password: str + :param domain: Name of the Active Directory domain + :type domain: str + :param dns: Comma separated list of DNS server IP addresses for the Active + Directory domain + :type dns: str + :param status: Status of the Active Directory + :type status: 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 + :param organizational_unit: The Organizational Unit (OU) within the + Windows Active Directory + :type organizational_unit: str + """ + + _attribute_map = { + 'active_directory_id': {'key': 'activeDirectoryId', 'type': 'str'}, + 'username': {'key': 'username', 'type': 'str'}, + 'password': {'key': 'password', 'type': 'str'}, + 'domain': {'key': 'domain', 'type': 'str'}, + 'dns': {'key': 'dns', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + 'smb_server_name': {'key': 'smbServerName', 'type': 'str'}, + 'organizational_unit': {'key': 'organizationalUnit', '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, **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.smb_server_name = smb_server_name + self.organizational_unit = organizational_unit + + +class CapacityPool(Model): + """Capacity pool resource. + + 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: object + :ivar pool_id: poolId. UUID v4 used to identify the Pool + :vartype pool_id: str + :param size: Required. size. Provisioned size of the pool (in bytes). + Allowed values are in 4TiB chunks (value must be multiply of + 4398046511104). + :type size: long + :param service_level: Required. 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 + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'pool_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}$'}, + 'size': {'required': True, 'maximum': 549755813888000, 'minimum': 4398046511104}, + 'service_level': {'required': 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': 'object'}, + 'pool_id': {'key': 'properties.poolId', 'type': 'str'}, + 'size': {'key': 'properties.size', 'type': 'long'}, + 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, *, location: str, size: int, tags=None, service_level="Premium", **kwargs) -> None: + super(CapacityPool, self).__init__(**kwargs) + self.location = location + self.id = None + self.name = None + self.type = None + self.tags = tags + self.pool_id = None + self.size = size + self.service_level = service_level + self.provisioning_state = None + + +class CapacityPoolPatch(Model): + """Capacity pool patch resource. + + 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: object + :param size: size. Provisioned size of the pool (in bytes). Allowed values + 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 + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'size': {'maximum': 549755813888000, 'minimum': 4398046511104}, + } + + _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': 'object'}, + 'size': {'key': 'properties.size', 'type': 'long'}, + 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, + } + + def __init__(self, *, location: str=None, tags=None, size: int=4398046511104, service_level="Premium", **kwargs) -> None: + super(CapacityPoolPatch, self).__init__(**kwargs) + self.location = location + self.id = None + self.name = None + self.type = None + self.tags = tags + self.size = size + self.service_level = service_level + + +class CloudError(Model): + """CloudError. + """ + + _attribute_map = { + } + + +class Dimension(Model): + """Dimension of blobs, possibly be blob type or access tier. + + :param name: Display name of dimension. + :type name: str + :param display_name: Display name of dimension. + :type display_name: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display_name': {'key': 'displayName', 'type': 'str'}, + } + + def __init__(self, *, name: str=None, display_name: str=None, **kwargs) -> None: + super(Dimension, self).__init__(**kwargs) + self.name = name + self.display_name = display_name + + +class ExportPolicyRule(Model): + """Volume Export Policy Rule. + + :param rule_index: Order index + :type rule_index: int + :param unix_read_only: Read only access + :type unix_read_only: bool + :param unix_read_write: Read and write access + :type unix_read_write: bool + :param cifs: Allows CIFS protocol + :type cifs: bool + :param nfsv3: Allows NFSv3 protocol + :type nfsv3: bool + :param nfsv41: Allows NFSv4.1 protocol + :type nfsv41: bool + :param allowed_clients: Client ingress specification as comma separated + string with IPv4 CIDRs, IPv4 host addresses and host names + :type allowed_clients: str + """ + + _attribute_map = { + 'rule_index': {'key': 'ruleIndex', 'type': 'int'}, + 'unix_read_only': {'key': 'unixReadOnly', 'type': 'bool'}, + 'unix_read_write': {'key': 'unixReadWrite', 'type': 'bool'}, + 'cifs': {'key': 'cifs', 'type': 'bool'}, + 'nfsv3': {'key': 'nfsv3', 'type': 'bool'}, + 'nfsv41': {'key': 'nfsv41', 'type': 'bool'}, + 'allowed_clients': {'key': 'allowedClients', 'type': 'str'}, + } + + 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: + 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.cifs = cifs + self.nfsv3 = nfsv3 + self.nfsv41 = nfsv41 + self.allowed_clients = allowed_clients + + +class MetricSpecification(Model): + """Metric specification of operation. + + :param name: Name of metric specification. + :type name: str + :param display_name: Display name of metric specification. + :type display_name: str + :param display_description: Display description of metric specification. + :type display_description: str + :param unit: Unit could be Bytes or Count. + :type unit: str + :param dimensions: Dimensions of blobs, including blob type and access + tier. + :type dimensions: list[~azure.mgmt.netapp.models.Dimension] + :param aggregation_type: Aggregation type could be Average. + :type aggregation_type: str + :param fill_gap_with_zero: The property to decide fill gap with zero or + not. + :type fill_gap_with_zero: bool + :param category: The category this metric specification belong to, could + be Capacity. + :type category: str + :param resource_id_dimension_name_override: Account Resource Id. + :type resource_id_dimension_name_override: str + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display_name': {'key': 'displayName', 'type': 'str'}, + 'display_description': {'key': 'displayDescription', 'type': 'str'}, + 'unit': {'key': 'unit', 'type': 'str'}, + 'dimensions': {'key': 'dimensions', 'type': '[Dimension]'}, + 'aggregation_type': {'key': 'aggregationType', 'type': 'str'}, + 'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'}, + 'category': {'key': 'category', 'type': 'str'}, + 'resource_id_dimension_name_override': {'key': 'resourceIdDimensionNameOverride', 'type': 'str'}, + } + + def __init__(self, *, name: str=None, display_name: str=None, display_description: str=None, unit: str=None, dimensions=None, aggregation_type: str=None, fill_gap_with_zero: bool=None, category: str=None, resource_id_dimension_name_override: str=None, **kwargs) -> None: + super(MetricSpecification, self).__init__(**kwargs) + self.name = name + self.display_name = display_name + self.display_description = display_description + self.unit = unit + self.dimensions = dimensions + self.aggregation_type = aggregation_type + self.fill_gap_with_zero = fill_gap_with_zero + self.category = category + self.resource_id_dimension_name_override = resource_id_dimension_name_override + + +class MountTarget(Model): + """Mount Target. + + 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 + :param tags: Resource tags + :type tags: object + :ivar mount_target_id: mountTargetId. UUID v4 used to identify the + MountTarget + :vartype mount_target_id: str + :param file_system_id: Required. fileSystemId. UUID v4 used to identify + the MountTarget + :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 + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'mount_target_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}$'}, + 'file_system_id': {'required': 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}$'}, + 'ip_address': {'readonly': True}, + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'location': {'key': 'location', 'type': 'str'}, + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': 'object'}, + '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'}, + 'provisioning_state': {'key': 'properties.provisioningState', '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: + super(MountTarget, self).__init__(**kwargs) + self.location = location + self.id = None + self.name = None + self.tags = tags + 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 + self.provisioning_state = None + + +class NetAppAccount(Model): + """NetApp account resource. + + 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: object + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + :param active_directories: Active Directories + :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'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': 'object'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, + } + + def __init__(self, *, location: str, tags=None, active_directories=None, **kwargs) -> None: + super(NetAppAccount, self).__init__(**kwargs) + self.location = location + self.id = None + self.name = None + self.type = None + self.tags = tags + self.provisioning_state = None + self.active_directories = active_directories + + +class NetAppAccountPatch(Model): + """NetApp account patch resource. + + 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: object + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + :param active_directories: Active Directories + :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'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': 'object'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, + } + + def __init__(self, *, location: str=None, tags=None, active_directories=None, **kwargs) -> None: + super(NetAppAccountPatch, self).__init__(**kwargs) + self.location = location + self.id = None + self.name = None + self.type = None + self.tags = tags + self.provisioning_state = None + self.active_directories = active_directories + + +class Operation(Model): + """Microsoft.NetApp REST API operation definition. + + :param name: Operation name: {provider}/{resource}/{operation} + :type name: str + :param display: Display metadata associated with the operation. + :type display: ~azure.mgmt.netapp.models.OperationDisplay + :param origin: The origin of operations. + :type origin: str + :param service_specification: One property of operation, include metric + specifications. + :type service_specification: + ~azure.mgmt.netapp.models.ServiceSpecification + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'display': {'key': 'display', 'type': 'OperationDisplay'}, + 'origin': {'key': 'origin', 'type': 'str'}, + 'service_specification': {'key': 'properties.serviceSpecification', 'type': 'ServiceSpecification'}, + } + + def __init__(self, *, name: str=None, display=None, origin: str=None, service_specification=None, **kwargs) -> None: + super(Operation, self).__init__(**kwargs) + self.name = name + self.display = display + self.origin = origin + self.service_specification = service_specification + + +class OperationDisplay(Model): + """Display metadata associated with the operation. + + :param provider: Service provider: Microsoft NetApp. + :type provider: str + :param resource: Resource on which the operation is performed etc. + :type resource: str + :param operation: Type of operation: get, read, delete, etc. + :type operation: str + :param description: Operation description. + :type description: str + """ + + _attribute_map = { + '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 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. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. Resource name 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.CheckNameResourceTypes + :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, *, name: str, type, resource_group: str, **kwargs) -> None: + super(ResourceNameAvailabilityRequest, self).__init__(**kwargs) + self.name = name + self.type = type + self.resource_group = resource_group + + +class ServiceSpecification(Model): + """One property of operation, include metric specifications. + + :param metric_specifications: Metric specifications of operation. + :type metric_specifications: + list[~azure.mgmt.netapp.models.MetricSpecification] + """ + + _attribute_map = { + 'metric_specifications': {'key': 'metricSpecifications', 'type': '[MetricSpecification]'}, + } + + def __init__(self, *, metric_specifications=None, **kwargs) -> None: + super(ServiceSpecification, self).__init__(**kwargs) + self.metric_specifications = metric_specifications + + +class Snapshot(Model): + """Snapshot 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 + :param tags: Resource tags + :type tags: object + :ivar snapshot_id: snapshotId. UUID v4 used to identify the Snapshot + :vartype snapshot_id: str + :param file_system_id: fileSystemId. UUID v4 used to identify the + FileSystem + :type file_system_id: str + :ivar created: name. The creation date of the snapshot + :vartype created: datetime + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'snapshot_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}$'}, + 'file_system_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}$'}, + 'created': {'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': 'object'}, + 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, + 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, + 'created': {'key': 'properties.created', 'type': 'iso-8601'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + } + + def __init__(self, *, location: str, tags=None, file_system_id: str=None, **kwargs) -> None: + super(Snapshot, self).__init__(**kwargs) + self.location = location + self.id = None + self.name = None + self.type = None + self.tags = tags + self.snapshot_id = None + self.file_system_id = file_system_id + self.created = None + self.provisioning_state = None + + +class SnapshotPatch(Model): + """Snapshot patch. + + :param tags: Resource tags + :type tags: object + """ + + _attribute_map = { + 'tags': {'key': 'tags', 'type': 'object'}, + } + + def __init__(self, *, tags=None, **kwargs) -> None: + super(SnapshotPatch, self).__init__(**kwargs) + self.tags = tags + + +class Volume(Model): + """Volume resource. + + 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: object + :ivar file_system_id: FileSystem ID. Unique FileSystem Identifier. + :vartype file_system_id: str + :param creation_token: Required. Creation Token or File Path. A unique + file path for the volume. Used when creating mount targets + :type creation_token: str + :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 usage_threshold: Required. usageThreshold. Maximum storage quota + allowed for a file system in bytes. This is a soft quota used for alerting + only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes. + Default value: 107374182400 . + :type usage_threshold: long + :param export_policy: exportPolicy. Set of export policy rules + :type export_policy: + ~azure.mgmt.netapp.models.VolumePropertiesExportPolicy + :param protocol_types: protocolTypes. Set of protocol types + :type protocol_types: list[str] + :ivar provisioning_state: Azure lifecycle management + :vartype provisioning_state: str + :param snapshot_id: Snapshot ID. UUID v4 or resource identifier used to + identify the Snapshot. + :type snapshot_id: str + :ivar baremetal_tenant_id: Baremetal Tenant ID. Unique Baremetal Tenant + Identifier. + :vartype baremetal_tenant_id: str + :param subnet_id: Required. The Azure Resource URI for a delegated subnet. + Must have the delegation Microsoft.NetApp/volumes + :type subnet_id: str + :param mount_targets: mountTargets. List of mount targets + :type mount_targets: object + """ + + _validation = { + 'location': {'required': True}, + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'file_system_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}$'}, + 'creation_token': {'required': True}, + '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}|(\\?([^\/]*[\/])*)([^\/]+)$'}, + '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}, + } + + _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': 'object'}, + 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, + 'creation_token': {'key': 'properties.creationToken', 'type': 'str'}, + 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, + 'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'}, + 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePropertiesExportPolicy'}, + 'protocol_types': {'key': 'properties.protocolTypes', 'type': '[str]'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, + 'baremetal_tenant_id': {'key': 'properties.baremetalTenantId', 'type': 'str'}, + 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, + 'mount_targets': {'key': 'properties.mountTargets', 'type': 'object'}, + } + + 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, **kwargs) -> None: + super(Volume, self).__init__(**kwargs) + self.location = location + self.id = None + self.name = None + self.type = None + self.tags = tags + self.file_system_id = None + self.creation_token = creation_token + self.service_level = service_level + self.usage_threshold = usage_threshold + self.export_policy = export_policy + self.protocol_types = protocol_types + self.provisioning_state = None + self.snapshot_id = snapshot_id + self.baremetal_tenant_id = None + self.subnet_id = subnet_id + self.mount_targets = mount_targets + + +class VolumePatch(Model): + """Volume patch resource. + + 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: object + :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 usage_threshold: usageThreshold. Maximum storage quota allowed for + a file system in bytes. This is a soft quota used for alerting only. + Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes. + Default value: 107374182400 . + :type usage_threshold: long + :param export_policy: exportPolicy. Set of export policy rules + :type export_policy: + ~azure.mgmt.netapp.models.VolumePatchPropertiesExportPolicy + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'usage_threshold': {'maximum': 109951162777600, 'minimum': 107374182400}, + } + + _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': 'object'}, + 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, + 'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'}, + 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePatchPropertiesExportPolicy'}, + } + + def __init__(self, *, location: str=None, tags=None, service_level="Premium", usage_threshold: int=107374182400, export_policy=None, **kwargs) -> None: + super(VolumePatch, self).__init__(**kwargs) + self.location = location + self.id = None + self.name = None + self.type = None + self.tags = tags + self.service_level = service_level + self.usage_threshold = usage_threshold + self.export_policy = export_policy + + +class VolumePatchPropertiesExportPolicy(Model): + """exportPolicy. + + Set of export policy rules. + + :param rules: Export policy rule. Export policy rule + :type rules: list[~azure.mgmt.netapp.models.ExportPolicyRule] + """ + + _attribute_map = { + 'rules': {'key': 'rules', 'type': '[ExportPolicyRule]'}, + } + + def __init__(self, *, rules=None, **kwargs) -> None: + super(VolumePatchPropertiesExportPolicy, self).__init__(**kwargs) + self.rules = rules + + +class VolumePropertiesExportPolicy(Model): + """exportPolicy. + + Set of export policy rules. + + :param rules: Export policy rule. Export policy rule + :type rules: list[~azure.mgmt.netapp.models.ExportPolicyRule] + """ + + _attribute_map = { + 'rules': {'key': 'rules', 'type': '[ExportPolicyRule]'}, + } + + def __init__(self, *, rules=None, **kwargs) -> None: + super(VolumePropertiesExportPolicy, self).__init__(**kwargs) + self.rules = rules 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 new file mode 100644 index 000000000000..2aeed420d513 --- /dev/null +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/_paged_models.py @@ -0,0 +1,92 @@ +# 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. +# -------------------------------------------------------------------------- + +from msrest.paging import Paged + + +class OperationPaged(Paged): + """ + A paging container for iterating over a list of :class:`Operation ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[Operation]'} + } + + def __init__(self, *args, **kwargs): + + super(OperationPaged, self).__init__(*args, **kwargs) +class NetAppAccountPaged(Paged): + """ + A paging container for iterating over a list of :class:`NetAppAccount ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[NetAppAccount]'} + } + + def __init__(self, *args, **kwargs): + + super(NetAppAccountPaged, self).__init__(*args, **kwargs) +class CapacityPoolPaged(Paged): + """ + A paging container for iterating over a list of :class:`CapacityPool ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[CapacityPool]'} + } + + def __init__(self, *args, **kwargs): + + super(CapacityPoolPaged, self).__init__(*args, **kwargs) +class VolumePaged(Paged): + """ + A paging container for iterating over a list of :class:`Volume ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[Volume]'} + } + + def __init__(self, *args, **kwargs): + + super(VolumePaged, self).__init__(*args, **kwargs) +class MountTargetPaged(Paged): + """ + A paging container for iterating over a list of :class:`MountTarget ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[MountTarget]'} + } + + def __init__(self, *args, **kwargs): + + super(MountTargetPaged, self).__init__(*args, **kwargs) +class SnapshotPaged(Paged): + """ + A paging container for iterating over a list of :class:`Snapshot ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[Snapshot]'} + } + + def __init__(self, *args, **kwargs): + + super(SnapshotPaged, self).__init__(*args, **kwargs) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory.py deleted file mode 100644 index 4e89541ee7ab..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory.py +++ /dev/null @@ -1,60 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class ActiveDirectory(Model): - """Active Directory. - - :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 - :type password: str - :param domain: Name of the Active Directory domain - :type domain: str - :param dns: Comma separated list of DNS server IP addresses for the Active - Directory domain - :type dns: str - :param status: Status of the Active Directory - :type status: 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 - :param organizational_unit: The Organizational Unit (OU) within the - Windows Active Directory - :type organizational_unit: str - """ - - _attribute_map = { - 'active_directory_id': {'key': 'activeDirectoryId', 'type': 'str'}, - 'username': {'key': 'username', 'type': 'str'}, - 'password': {'key': 'password', 'type': 'str'}, - 'domain': {'key': 'domain', 'type': 'str'}, - 'dns': {'key': 'dns', 'type': 'str'}, - 'status': {'key': 'status', 'type': 'str'}, - 'smb_server_name': {'key': 'smbServerName', 'type': 'str'}, - 'organizational_unit': {'key': 'organizationalUnit', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(ActiveDirectory, self).__init__(**kwargs) - self.active_directory_id = kwargs.get('active_directory_id', None) - self.username = kwargs.get('username', None) - 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.smb_server_name = kwargs.get('smb_server_name', None) - self.organizational_unit = kwargs.get('organizational_unit', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory_py3.py deleted file mode 100644 index 89fd28eb2a22..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory_py3.py +++ /dev/null @@ -1,60 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class ActiveDirectory(Model): - """Active Directory. - - :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 - :type password: str - :param domain: Name of the Active Directory domain - :type domain: str - :param dns: Comma separated list of DNS server IP addresses for the Active - Directory domain - :type dns: str - :param status: Status of the Active Directory - :type status: 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 - :param organizational_unit: The Organizational Unit (OU) within the - Windows Active Directory - :type organizational_unit: str - """ - - _attribute_map = { - 'active_directory_id': {'key': 'activeDirectoryId', 'type': 'str'}, - 'username': {'key': 'username', 'type': 'str'}, - 'password': {'key': 'password', 'type': 'str'}, - 'domain': {'key': 'domain', 'type': 'str'}, - 'dns': {'key': 'dns', 'type': 'str'}, - 'status': {'key': 'status', 'type': 'str'}, - 'smb_server_name': {'key': 'smbServerName', 'type': 'str'}, - 'organizational_unit': {'key': 'organizationalUnit', '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, **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.smb_server_name = smb_server_name - self.organizational_unit = organizational_unit diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool.py deleted file mode 100644 index 9a2dc8f38228..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool.py +++ /dev/null @@ -1,80 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class CapacityPool(Model): - """Capacity pool resource. - - 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: object - :ivar pool_id: poolId. UUID v4 used to identify the Pool - :vartype pool_id: str - :param size: Required. size. Provisioned size of the pool (in bytes). - Allowed values are in 4TiB chunks (value must be multiply of - 4398046511104). - :type size: long - :param service_level: Required. 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 - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'pool_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}$'}, - 'size': {'required': True, 'maximum': 549755813888000, 'minimum': 4398046511104}, - 'service_level': {'required': 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': 'object'}, - 'pool_id': {'key': 'properties.poolId', 'type': 'str'}, - 'size': {'key': 'properties.size', 'type': 'long'}, - 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(CapacityPool, 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.pool_id = None - self.size = kwargs.get('size', None) - self.service_level = kwargs.get('service_level', "Premium") - self.provisioning_state = None diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_paged.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_paged.py deleted file mode 100644 index fa7c435c870d..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_paged.py +++ /dev/null @@ -1,27 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.paging import Paged - - -class CapacityPoolPaged(Paged): - """ - A paging container for iterating over a list of :class:`CapacityPool ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[CapacityPool]'} - } - - def __init__(self, *args, **kwargs): - - super(CapacityPoolPaged, self).__init__(*args, **kwargs) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch.py deleted file mode 100644 index 03810e13bf5a..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch.py +++ /dev/null @@ -1,66 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class CapacityPoolPatch(Model): - """Capacity pool patch resource. - - 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: object - :param size: size. Provisioned size of the pool (in bytes). Allowed values - 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 - """ - - _validation = { - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'size': {'maximum': 549755813888000, 'minimum': 4398046511104}, - } - - _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': 'object'}, - 'size': {'key': 'properties.size', 'type': 'long'}, - 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(CapacityPoolPatch, 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.size = kwargs.get('size', 4398046511104) - self.service_level = kwargs.get('service_level', "Premium") diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch_py3.py deleted file mode 100644 index 0ff013d0ef91..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch_py3.py +++ /dev/null @@ -1,66 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class CapacityPoolPatch(Model): - """Capacity pool patch resource. - - 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: object - :param size: size. Provisioned size of the pool (in bytes). Allowed values - 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 - """ - - _validation = { - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'size': {'maximum': 549755813888000, 'minimum': 4398046511104}, - } - - _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': 'object'}, - 'size': {'key': 'properties.size', 'type': 'long'}, - 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, - } - - def __init__(self, *, location: str=None, tags=None, size: int=4398046511104, service_level="Premium", **kwargs) -> None: - super(CapacityPoolPatch, self).__init__(**kwargs) - self.location = location - self.id = None - self.name = None - self.type = None - self.tags = tags - self.size = size - self.service_level = service_level diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_py3.py deleted file mode 100644 index 6040ddfd3dc9..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_py3.py +++ /dev/null @@ -1,80 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class CapacityPool(Model): - """Capacity pool resource. - - 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: object - :ivar pool_id: poolId. UUID v4 used to identify the Pool - :vartype pool_id: str - :param size: Required. size. Provisioned size of the pool (in bytes). - Allowed values are in 4TiB chunks (value must be multiply of - 4398046511104). - :type size: long - :param service_level: Required. 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 - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'pool_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}$'}, - 'size': {'required': True, 'maximum': 549755813888000, 'minimum': 4398046511104}, - 'service_level': {'required': 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': 'object'}, - 'pool_id': {'key': 'properties.poolId', 'type': 'str'}, - 'size': {'key': 'properties.size', 'type': 'long'}, - 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - } - - def __init__(self, *, location: str, size: int, tags=None, service_level="Premium", **kwargs) -> None: - super(CapacityPool, self).__init__(**kwargs) - self.location = location - self.id = None - self.name = None - self.type = None - self.tags = tags - self.pool_id = None - self.size = size - self.service_level = service_level - self.provisioning_state = None diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/dimension.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/dimension.py deleted file mode 100644 index 2398aa46e8f6..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/dimension.py +++ /dev/null @@ -1,32 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Dimension(Model): - """Dimension of blobs, possibly be blob type or access tier. - - :param name: Display name of dimension. - :type name: str - :param display_name: Display name of dimension. - :type display_name: str - """ - - _attribute_map = { - 'name': {'key': 'name', 'type': 'str'}, - 'display_name': {'key': 'displayName', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(Dimension, self).__init__(**kwargs) - self.name = kwargs.get('name', None) - self.display_name = kwargs.get('display_name', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/dimension_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/dimension_py3.py deleted file mode 100644 index af5b0aac3d23..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/dimension_py3.py +++ /dev/null @@ -1,32 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Dimension(Model): - """Dimension of blobs, possibly be blob type or access tier. - - :param name: Display name of dimension. - :type name: str - :param display_name: Display name of dimension. - :type display_name: str - """ - - _attribute_map = { - 'name': {'key': 'name', 'type': 'str'}, - 'display_name': {'key': 'displayName', 'type': 'str'}, - } - - def __init__(self, *, name: str=None, display_name: str=None, **kwargs) -> None: - super(Dimension, self).__init__(**kwargs) - self.name = name - self.display_name = display_name diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule.py deleted file mode 100644 index 12b5fbc66822..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule.py +++ /dev/null @@ -1,53 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class ExportPolicyRule(Model): - """Volume Export Policy Rule. - - :param rule_index: Order index - :type rule_index: int - :param unix_read_only: Read only access - :type unix_read_only: bool - :param unix_read_write: Read and write access - :type unix_read_write: bool - :param cifs: Allows CIFS protocol - :type cifs: bool - :param nfsv3: Allows NFSv3 protocol - :type nfsv3: bool - :param nfsv4: Allows NFSv4 protocol - :type nfsv4: bool - :param allowed_clients: Client ingress specification as comma separated - string with IPv4 CIDRs, IPv4 host addresses and host names - :type allowed_clients: str - """ - - _attribute_map = { - 'rule_index': {'key': 'ruleIndex', 'type': 'int'}, - 'unix_read_only': {'key': 'unixReadOnly', 'type': 'bool'}, - 'unix_read_write': {'key': 'unixReadWrite', 'type': 'bool'}, - 'cifs': {'key': 'cifs', 'type': 'bool'}, - 'nfsv3': {'key': 'nfsv3', 'type': 'bool'}, - 'nfsv4': {'key': 'nfsv4', 'type': 'bool'}, - 'allowed_clients': {'key': 'allowedClients', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(ExportPolicyRule, self).__init__(**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.cifs = kwargs.get('cifs', None) - self.nfsv3 = kwargs.get('nfsv3', None) - self.nfsv4 = kwargs.get('nfsv4', None) - self.allowed_clients = kwargs.get('allowed_clients', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule_py3.py deleted file mode 100644 index 62f11c226eb7..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule_py3.py +++ /dev/null @@ -1,53 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class ExportPolicyRule(Model): - """Volume Export Policy Rule. - - :param rule_index: Order index - :type rule_index: int - :param unix_read_only: Read only access - :type unix_read_only: bool - :param unix_read_write: Read and write access - :type unix_read_write: bool - :param cifs: Allows CIFS protocol - :type cifs: bool - :param nfsv3: Allows NFSv3 protocol - :type nfsv3: bool - :param nfsv4: Allows NFSv4 protocol - :type nfsv4: bool - :param allowed_clients: Client ingress specification as comma separated - string with IPv4 CIDRs, IPv4 host addresses and host names - :type allowed_clients: str - """ - - _attribute_map = { - 'rule_index': {'key': 'ruleIndex', 'type': 'int'}, - 'unix_read_only': {'key': 'unixReadOnly', 'type': 'bool'}, - 'unix_read_write': {'key': 'unixReadWrite', 'type': 'bool'}, - 'cifs': {'key': 'cifs', 'type': 'bool'}, - 'nfsv3': {'key': 'nfsv3', 'type': 'bool'}, - 'nfsv4': {'key': 'nfsv4', 'type': 'bool'}, - 'allowed_clients': {'key': 'allowedClients', 'type': 'str'}, - } - - def __init__(self, *, rule_index: int=None, unix_read_only: bool=None, unix_read_write: bool=None, cifs: bool=None, nfsv3: bool=None, nfsv4: bool=None, allowed_clients: str=None, **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.cifs = cifs - self.nfsv3 = nfsv3 - self.nfsv4 = nfsv4 - self.allowed_clients = allowed_clients diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/metric_specification.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/metric_specification.py deleted file mode 100644 index 340a905ef641..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/metric_specification.py +++ /dev/null @@ -1,63 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class MetricSpecification(Model): - """Metric specification of operation. - - :param name: Name of metric specification. - :type name: str - :param display_name: Display name of metric specification. - :type display_name: str - :param display_description: Display description of metric specification. - :type display_description: str - :param unit: Unit could be Bytes or Count. - :type unit: str - :param dimensions: Dimensions of blobs, including blob type and access - tier. - :type dimensions: list[~azure.mgmt.netapp.models.Dimension] - :param aggregation_type: Aggregation type could be Average. - :type aggregation_type: str - :param fill_gap_with_zero: The property to decide fill gap with zero or - not. - :type fill_gap_with_zero: bool - :param category: The category this metric specification belong to, could - be Capacity. - :type category: str - :param resource_id_dimension_name_override: Account Resource Id. - :type resource_id_dimension_name_override: str - """ - - _attribute_map = { - 'name': {'key': 'name', 'type': 'str'}, - 'display_name': {'key': 'displayName', 'type': 'str'}, - 'display_description': {'key': 'displayDescription', 'type': 'str'}, - 'unit': {'key': 'unit', 'type': 'str'}, - 'dimensions': {'key': 'dimensions', 'type': '[Dimension]'}, - 'aggregation_type': {'key': 'aggregationType', 'type': 'str'}, - 'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'}, - 'category': {'key': 'category', 'type': 'str'}, - 'resource_id_dimension_name_override': {'key': 'resourceIdDimensionNameOverride', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(MetricSpecification, self).__init__(**kwargs) - self.name = kwargs.get('name', None) - self.display_name = kwargs.get('display_name', None) - self.display_description = kwargs.get('display_description', None) - self.unit = kwargs.get('unit', None) - self.dimensions = kwargs.get('dimensions', None) - self.aggregation_type = kwargs.get('aggregation_type', None) - self.fill_gap_with_zero = kwargs.get('fill_gap_with_zero', None) - self.category = kwargs.get('category', None) - self.resource_id_dimension_name_override = kwargs.get('resource_id_dimension_name_override', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/metric_specification_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/metric_specification_py3.py deleted file mode 100644 index 603882841982..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/metric_specification_py3.py +++ /dev/null @@ -1,63 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class MetricSpecification(Model): - """Metric specification of operation. - - :param name: Name of metric specification. - :type name: str - :param display_name: Display name of metric specification. - :type display_name: str - :param display_description: Display description of metric specification. - :type display_description: str - :param unit: Unit could be Bytes or Count. - :type unit: str - :param dimensions: Dimensions of blobs, including blob type and access - tier. - :type dimensions: list[~azure.mgmt.netapp.models.Dimension] - :param aggregation_type: Aggregation type could be Average. - :type aggregation_type: str - :param fill_gap_with_zero: The property to decide fill gap with zero or - not. - :type fill_gap_with_zero: bool - :param category: The category this metric specification belong to, could - be Capacity. - :type category: str - :param resource_id_dimension_name_override: Account Resource Id. - :type resource_id_dimension_name_override: str - """ - - _attribute_map = { - 'name': {'key': 'name', 'type': 'str'}, - 'display_name': {'key': 'displayName', 'type': 'str'}, - 'display_description': {'key': 'displayDescription', 'type': 'str'}, - 'unit': {'key': 'unit', 'type': 'str'}, - 'dimensions': {'key': 'dimensions', 'type': '[Dimension]'}, - 'aggregation_type': {'key': 'aggregationType', 'type': 'str'}, - 'fill_gap_with_zero': {'key': 'fillGapWithZero', 'type': 'bool'}, - 'category': {'key': 'category', 'type': 'str'}, - 'resource_id_dimension_name_override': {'key': 'resourceIdDimensionNameOverride', 'type': 'str'}, - } - - def __init__(self, *, name: str=None, display_name: str=None, display_description: str=None, unit: str=None, dimensions=None, aggregation_type: str=None, fill_gap_with_zero: bool=None, category: str=None, resource_id_dimension_name_override: str=None, **kwargs) -> None: - super(MetricSpecification, self).__init__(**kwargs) - self.name = name - self.display_name = display_name - self.display_description = display_description - self.unit = unit - self.dimensions = dimensions - self.aggregation_type = aggregation_type - self.fill_gap_with_zero = fill_gap_with_zero - self.category = category - self.resource_id_dimension_name_override = resource_id_dimension_name_override diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target.py deleted file mode 100644 index 0bbbbbd78e70..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target.py +++ /dev/null @@ -1,102 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class MountTarget(Model): - """Mount Target. - - 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 - :param tags: Resource tags - :type tags: object - :ivar mount_target_id: mountTargetId. UUID v4 used to identify the - MountTarget - :vartype mount_target_id: str - :param file_system_id: Required. fileSystemId. UUID v4 used to identify - the MountTarget - :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 - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'mount_target_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}$'}, - 'file_system_id': {'required': 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}$'}, - 'ip_address': {'readonly': True}, - 'provisioning_state': {'readonly': True}, - } - - _attribute_map = { - 'location': {'key': 'location', 'type': 'str'}, - 'id': {'key': 'id', 'type': 'str'}, - 'name': {'key': 'name', 'type': 'str'}, - 'tags': {'key': 'tags', 'type': 'object'}, - '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'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(MountTarget, self).__init__(**kwargs) - self.location = kwargs.get('location', None) - self.id = None - self.name = None - self.tags = kwargs.get('tags', None) - 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) - self.provisioning_state = None diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_paged.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_paged.py deleted file mode 100644 index 8d9983678f24..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_paged.py +++ /dev/null @@ -1,27 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.paging import Paged - - -class MountTargetPaged(Paged): - """ - A paging container for iterating over a list of :class:`MountTarget ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[MountTarget]'} - } - - def __init__(self, *args, **kwargs): - - super(MountTargetPaged, self).__init__(*args, **kwargs) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_py3.py deleted file mode 100644 index 475cf4105ccc..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_py3.py +++ /dev/null @@ -1,102 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class MountTarget(Model): - """Mount Target. - - 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 - :param tags: Resource tags - :type tags: object - :ivar mount_target_id: mountTargetId. UUID v4 used to identify the - MountTarget - :vartype mount_target_id: str - :param file_system_id: Required. fileSystemId. UUID v4 used to identify - the MountTarget - :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 - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'mount_target_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}$'}, - 'file_system_id': {'required': 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}$'}, - 'ip_address': {'readonly': True}, - 'provisioning_state': {'readonly': True}, - } - - _attribute_map = { - 'location': {'key': 'location', 'type': 'str'}, - 'id': {'key': 'id', 'type': 'str'}, - 'name': {'key': 'name', 'type': 'str'}, - 'tags': {'key': 'tags', 'type': 'object'}, - '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'}, - 'provisioning_state': {'key': 'properties.provisioningState', '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: - super(MountTarget, self).__init__(**kwargs) - self.location = location - self.id = None - self.name = None - self.tags = tags - 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 - self.provisioning_state = None diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py deleted file mode 100644 index 3f15012da98e..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py +++ /dev/null @@ -1,65 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class NetAppAccount(Model): - """NetApp account resource. - - 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: object - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - :param active_directories: Active Directories - :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'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': 'object'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, - } - - def __init__(self, **kwargs): - super(NetAppAccount, 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.provisioning_state = None - self.active_directories = kwargs.get('active_directories', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_paged.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_paged.py deleted file mode 100644 index fd4a719a0737..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_paged.py +++ /dev/null @@ -1,27 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.paging import Paged - - -class NetAppAccountPaged(Paged): - """ - A paging container for iterating over a list of :class:`NetAppAccount ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[NetAppAccount]'} - } - - def __init__(self, *args, **kwargs): - - super(NetAppAccountPaged, self).__init__(*args, **kwargs) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py deleted file mode 100644 index 1e8f35b91a4c..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py +++ /dev/null @@ -1,62 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class NetAppAccountPatch(Model): - """NetApp account patch resource. - - 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: object - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - :param active_directories: Active Directories - :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] - """ - - _validation = { - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'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': 'object'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, - } - - def __init__(self, **kwargs): - super(NetAppAccountPatch, 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.provisioning_state = None - self.active_directories = kwargs.get('active_directories', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py deleted file mode 100644 index 982ff8975584..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py +++ /dev/null @@ -1,62 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class NetAppAccountPatch(Model): - """NetApp account patch resource. - - 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: object - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - :param active_directories: Active Directories - :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] - """ - - _validation = { - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'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': 'object'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, - } - - def __init__(self, *, location: str=None, tags=None, active_directories=None, **kwargs) -> None: - super(NetAppAccountPatch, self).__init__(**kwargs) - self.location = location - self.id = None - self.name = None - self.type = None - self.tags = tags - self.provisioning_state = None - self.active_directories = active_directories diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py deleted file mode 100644 index 72e53303d3fa..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py +++ /dev/null @@ -1,65 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class NetAppAccount(Model): - """NetApp account resource. - - 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: object - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - :param active_directories: Active Directories - :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'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': 'object'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, - } - - def __init__(self, *, location: str, tags=None, active_directories=None, **kwargs) -> None: - super(NetAppAccount, self).__init__(**kwargs) - self.location = location - self.id = None - self.name = None - self.type = None - self.tags = tags - self.provisioning_state = None - self.active_directories = active_directories diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation.py deleted file mode 100644 index 928aa9c0a0b6..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation.py +++ /dev/null @@ -1,42 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Operation(Model): - """Microsoft.NetApp REST API operation definition. - - :param name: Operation name: {provider}/{resource}/{operation} - :type name: str - :param display: Display metadata associated with the operation. - :type display: ~azure.mgmt.netapp.models.OperationDisplay - :param origin: The origin of operations. - :type origin: str - :param service_specification: One property of operation, include metric - specifications. - :type service_specification: - ~azure.mgmt.netapp.models.ServiceSpecification - """ - - _attribute_map = { - 'name': {'key': 'name', 'type': 'str'}, - 'display': {'key': 'display', 'type': 'OperationDisplay'}, - 'origin': {'key': 'origin', 'type': 'str'}, - 'service_specification': {'key': 'properties.serviceSpecification', 'type': 'ServiceSpecification'}, - } - - def __init__(self, **kwargs): - super(Operation, self).__init__(**kwargs) - self.name = kwargs.get('name', None) - self.display = kwargs.get('display', None) - self.origin = kwargs.get('origin', None) - self.service_specification = kwargs.get('service_specification', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_display.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_display.py deleted file mode 100644 index e9de65b8880f..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_display.py +++ /dev/null @@ -1,40 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class OperationDisplay(Model): - """Display metadata associated with the operation. - - :param provider: Service provider: Microsoft NetApp. - :type provider: str - :param resource: Resource on which the operation is performed etc. - :type resource: str - :param operation: Type of operation: get, read, delete, etc. - :type operation: str - :param description: Operation description. - :type description: str - """ - - _attribute_map = { - '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) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_display_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_display_py3.py deleted file mode 100644 index a066121cec71..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_display_py3.py +++ /dev/null @@ -1,40 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class OperationDisplay(Model): - """Display metadata associated with the operation. - - :param provider: Service provider: Microsoft NetApp. - :type provider: str - :param resource: Resource on which the operation is performed etc. - :type resource: str - :param operation: Type of operation: get, read, delete, etc. - :type operation: str - :param description: Operation description. - :type description: str - """ - - _attribute_map = { - '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 diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_paged.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_paged.py deleted file mode 100644 index 75776552e32c..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_paged.py +++ /dev/null @@ -1,27 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.paging import Paged - - -class OperationPaged(Paged): - """ - A paging container for iterating over a list of :class:`Operation ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Operation]'} - } - - def __init__(self, *args, **kwargs): - - super(OperationPaged, self).__init__(*args, **kwargs) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_py3.py deleted file mode 100644 index a4de32fddd08..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/operation_py3.py +++ /dev/null @@ -1,42 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Operation(Model): - """Microsoft.NetApp REST API operation definition. - - :param name: Operation name: {provider}/{resource}/{operation} - :type name: str - :param display: Display metadata associated with the operation. - :type display: ~azure.mgmt.netapp.models.OperationDisplay - :param origin: The origin of operations. - :type origin: str - :param service_specification: One property of operation, include metric - specifications. - :type service_specification: - ~azure.mgmt.netapp.models.ServiceSpecification - """ - - _attribute_map = { - 'name': {'key': 'name', 'type': 'str'}, - 'display': {'key': 'display', 'type': 'OperationDisplay'}, - 'origin': {'key': 'origin', 'type': 'str'}, - 'service_specification': {'key': 'properties.serviceSpecification', 'type': 'ServiceSpecification'}, - } - - def __init__(self, *, name: str=None, display=None, origin: str=None, service_specification=None, **kwargs) -> None: - super(Operation, self).__init__(**kwargs) - self.name = name - self.display = display - self.origin = origin - self.service_specification = service_specification diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability.py deleted file mode 100644 index 397cda55eb33..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability.py +++ /dev/null @@ -1,45 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -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) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_py3.py deleted file mode 100644 index f88d9f403fe0..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_py3.py +++ /dev/null @@ -1,45 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -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 diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_request.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_request.py deleted file mode 100644 index c4b6599261b9..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_request.py +++ /dev/null @@ -1,48 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class ResourceNameAvailabilityRequest(Model): - """Resource name availability request content. - - All required parameters must be populated in order to send to Azure. - - :param name: Required. Resource name 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.CheckNameResourceTypes - :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(ResourceNameAvailabilityRequest, self).__init__(**kwargs) - self.name = kwargs.get('name', None) - self.type = kwargs.get('type', None) - self.resource_group = kwargs.get('resource_group', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_request_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_request_py3.py deleted file mode 100644 index a26b5044501c..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/resource_name_availability_request_py3.py +++ /dev/null @@ -1,48 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class ResourceNameAvailabilityRequest(Model): - """Resource name availability request content. - - All required parameters must be populated in order to send to Azure. - - :param name: Required. Resource name 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.CheckNameResourceTypes - :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, *, name: str, type, resource_group: str, **kwargs) -> None: - super(ResourceNameAvailabilityRequest, self).__init__(**kwargs) - self.name = name - self.type = type - self.resource_group = resource_group diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/service_specification.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/service_specification.py deleted file mode 100644 index ad10cc9a95f0..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/service_specification.py +++ /dev/null @@ -1,29 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class ServiceSpecification(Model): - """One property of operation, include metric specifications. - - :param metric_specifications: Metric specifications of operation. - :type metric_specifications: - list[~azure.mgmt.netapp.models.MetricSpecification] - """ - - _attribute_map = { - 'metric_specifications': {'key': 'metricSpecifications', 'type': '[MetricSpecification]'}, - } - - def __init__(self, **kwargs): - super(ServiceSpecification, self).__init__(**kwargs) - self.metric_specifications = kwargs.get('metric_specifications', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/service_specification_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/service_specification_py3.py deleted file mode 100644 index e6ab3038fbee..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/service_specification_py3.py +++ /dev/null @@ -1,29 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class ServiceSpecification(Model): - """One property of operation, include metric specifications. - - :param metric_specifications: Metric specifications of operation. - :type metric_specifications: - list[~azure.mgmt.netapp.models.MetricSpecification] - """ - - _attribute_map = { - 'metric_specifications': {'key': 'metricSpecifications', 'type': '[MetricSpecification]'}, - } - - def __init__(self, *, metric_specifications=None, **kwargs) -> None: - super(ServiceSpecification, self).__init__(**kwargs) - self.metric_specifications = metric_specifications diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot.py deleted file mode 100644 index 2b9c7fa475f9..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot.py +++ /dev/null @@ -1,77 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Snapshot(Model): - """Snapshot 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 - :param tags: Resource tags - :type tags: object - :ivar snapshot_id: snapshotId. UUID v4 used to identify the Snapshot - :vartype snapshot_id: str - :param file_system_id: fileSystemId. UUID v4 used to identify the - FileSystem - :type file_system_id: str - :ivar creation_date: name. The creation date of the snapshot - :vartype creation_date: datetime - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'snapshot_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}$'}, - 'file_system_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}$'}, - 'creation_date': {'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': 'object'}, - 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, - 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, - 'creation_date': {'key': 'properties.creationDate', 'type': 'iso-8601'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - } - - def __init__(self, **kwargs): - super(Snapshot, 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.snapshot_id = None - self.file_system_id = kwargs.get('file_system_id', None) - self.creation_date = None - self.provisioning_state = None diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_paged.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_paged.py deleted file mode 100644 index 95ab3fde9644..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_paged.py +++ /dev/null @@ -1,27 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.paging import Paged - - -class SnapshotPaged(Paged): - """ - A paging container for iterating over a list of :class:`Snapshot ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Snapshot]'} - } - - def __init__(self, *args, **kwargs): - - super(SnapshotPaged, self).__init__(*args, **kwargs) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_patch.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_patch.py deleted file mode 100644 index 9ccd3602fab8..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_patch.py +++ /dev/null @@ -1,28 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class SnapshotPatch(Model): - """Snapshot patch. - - :param tags: Resource tags - :type tags: object - """ - - _attribute_map = { - 'tags': {'key': 'tags', 'type': 'object'}, - } - - def __init__(self, **kwargs): - super(SnapshotPatch, self).__init__(**kwargs) - self.tags = kwargs.get('tags', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_patch_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_patch_py3.py deleted file mode 100644 index 61ba55fecf81..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_patch_py3.py +++ /dev/null @@ -1,28 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class SnapshotPatch(Model): - """Snapshot patch. - - :param tags: Resource tags - :type tags: object - """ - - _attribute_map = { - 'tags': {'key': 'tags', 'type': 'object'}, - } - - def __init__(self, *, tags=None, **kwargs) -> None: - super(SnapshotPatch, self).__init__(**kwargs) - self.tags = tags diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_py3.py deleted file mode 100644 index fb9362306139..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/snapshot_py3.py +++ /dev/null @@ -1,77 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Snapshot(Model): - """Snapshot 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 - :param tags: Resource tags - :type tags: object - :ivar snapshot_id: snapshotId. UUID v4 used to identify the Snapshot - :vartype snapshot_id: str - :param file_system_id: fileSystemId. UUID v4 used to identify the - FileSystem - :type file_system_id: str - :ivar creation_date: name. The creation date of the snapshot - :vartype creation_date: datetime - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'snapshot_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}$'}, - 'file_system_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}$'}, - 'creation_date': {'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': 'object'}, - 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, - 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, - 'creation_date': {'key': 'properties.creationDate', 'type': 'iso-8601'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - } - - def __init__(self, *, location: str, tags=None, file_system_id: str=None, **kwargs) -> None: - super(Snapshot, self).__init__(**kwargs) - self.location = location - self.id = None - self.name = None - self.type = None - self.tags = tags - self.snapshot_id = None - self.file_system_id = file_system_id - self.creation_date = None - self.provisioning_state = None diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py deleted file mode 100644 index 99be4a98142f..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py +++ /dev/null @@ -1,117 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Volume(Model): - """Volume resource. - - 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: object - :ivar file_system_id: FileSystem ID. Unique FileSystem Identifier. - :vartype file_system_id: str - :param creation_token: Required. Creation Token or File Path. A unique - file path for the volume. Used when creating mount targets - :type creation_token: str - :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 usage_threshold: Required. usageThreshold. Maximum storage quota - allowed for a file system in bytes. This is a soft quota used for alerting - only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes. - Default value: 107374182400 . - :type usage_threshold: long - :param export_policy: exportPolicy. Set of export policy rules - :type export_policy: - ~azure.mgmt.netapp.models.VolumePropertiesExportPolicy - :param protocol_types: protocolTypes. Set of protocol types - :type protocol_types: list[str] - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - :param snapshot_id: Snapshot ID. UUID v4 or resource identifier used to - identify the Snapshot. - :type snapshot_id: str - :ivar baremetal_tenant_id: Baremetal Tenant ID. Unique Baremetal Tenant - Identifier. - :vartype baremetal_tenant_id: str - :param subnet_id: Required. The Azure Resource URI for a delegated subnet. - Must have the delegation Microsoft.NetApp/volumes - :type subnet_id: str - :param mount_targets: mountTargets. List of mount targets - :type mount_targets: object - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'file_system_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}$'}, - 'creation_token': {'required': True}, - '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}|(\\?([^\/]*[\/])*)([^\/]+)$'}, - '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}, - } - - _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': 'object'}, - 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, - 'creation_token': {'key': 'properties.creationToken', 'type': 'str'}, - 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, - 'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'}, - 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePropertiesExportPolicy'}, - 'protocol_types': {'key': 'properties.protocolTypes', 'type': '[str]'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, - 'baremetal_tenant_id': {'key': 'properties.baremetalTenantId', 'type': 'str'}, - 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, - 'mount_targets': {'key': 'properties.mountTargets', 'type': 'object'}, - } - - def __init__(self, **kwargs): - super(Volume, 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.file_system_id = None - self.creation_token = kwargs.get('creation_token', None) - 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.protocol_types = kwargs.get('protocol_types', None) - self.provisioning_state = None - self.snapshot_id = kwargs.get('snapshot_id', None) - self.baremetal_tenant_id = None - self.subnet_id = kwargs.get('subnet_id', None) - self.mount_targets = kwargs.get('mount_targets', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_paged.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_paged.py deleted file mode 100644 index 17d9bd4c9d35..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_paged.py +++ /dev/null @@ -1,27 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.paging import Paged - - -class VolumePaged(Paged): - """ - A paging container for iterating over a list of :class:`Volume ` object - """ - - _attribute_map = { - 'next_link': {'key': 'nextLink', 'type': 'str'}, - 'current_page': {'key': 'value', 'type': '[Volume]'} - } - - def __init__(self, *args, **kwargs): - - super(VolumePaged, self).__init__(*args, **kwargs) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py deleted file mode 100644 index e8fbfa6863c8..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py +++ /dev/null @@ -1,72 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class VolumePatch(Model): - """Volume patch resource. - - 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: object - :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 usage_threshold: usageThreshold. Maximum storage quota allowed for - a file system in bytes. This is a soft quota used for alerting only. - Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes. - Default value: 107374182400 . - :type usage_threshold: long - :param export_policy: exportPolicy. Set of export policy rules - :type export_policy: - ~azure.mgmt.netapp.models.VolumePatchPropertiesExportPolicy - """ - - _validation = { - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'usage_threshold': {'maximum': 109951162777600, 'minimum': 107374182400}, - } - - _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': 'object'}, - 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, - 'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'}, - 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePatchPropertiesExportPolicy'}, - } - - def __init__(self, **kwargs): - super(VolumePatch, 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.service_level = kwargs.get('service_level', "Premium") - self.usage_threshold = kwargs.get('usage_threshold', 107374182400) - self.export_policy = kwargs.get('export_policy', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy.py deleted file mode 100644 index 5b40edccf383..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy.py +++ /dev/null @@ -1,30 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class VolumePatchPropertiesExportPolicy(Model): - """exportPolicy. - - Set of export policy rules. - - :param rules: Export policy rule. Export policy rule - :type rules: list[~azure.mgmt.netapp.models.ExportPolicyRule] - """ - - _attribute_map = { - 'rules': {'key': 'rules', 'type': '[ExportPolicyRule]'}, - } - - def __init__(self, **kwargs): - super(VolumePatchPropertiesExportPolicy, self).__init__(**kwargs) - self.rules = kwargs.get('rules', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy_py3.py deleted file mode 100644 index 2f399bf38cb3..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy_py3.py +++ /dev/null @@ -1,30 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class VolumePatchPropertiesExportPolicy(Model): - """exportPolicy. - - Set of export policy rules. - - :param rules: Export policy rule. Export policy rule - :type rules: list[~azure.mgmt.netapp.models.ExportPolicyRule] - """ - - _attribute_map = { - 'rules': {'key': 'rules', 'type': '[ExportPolicyRule]'}, - } - - def __init__(self, *, rules=None, **kwargs) -> None: - super(VolumePatchPropertiesExportPolicy, self).__init__(**kwargs) - self.rules = rules diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py deleted file mode 100644 index 054b0c696fe1..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py +++ /dev/null @@ -1,72 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class VolumePatch(Model): - """Volume patch resource. - - 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: object - :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 usage_threshold: usageThreshold. Maximum storage quota allowed for - a file system in bytes. This is a soft quota used for alerting only. - Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes. - Default value: 107374182400 . - :type usage_threshold: long - :param export_policy: exportPolicy. Set of export policy rules - :type export_policy: - ~azure.mgmt.netapp.models.VolumePatchPropertiesExportPolicy - """ - - _validation = { - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'usage_threshold': {'maximum': 109951162777600, 'minimum': 107374182400}, - } - - _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': 'object'}, - 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, - 'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'}, - 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePatchPropertiesExportPolicy'}, - } - - def __init__(self, *, location: str=None, tags=None, service_level="Premium", usage_threshold: int=107374182400, export_policy=None, **kwargs) -> None: - super(VolumePatch, self).__init__(**kwargs) - self.location = location - self.id = None - self.name = None - self.type = None - self.tags = tags - self.service_level = service_level - self.usage_threshold = usage_threshold - self.export_policy = export_policy diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy.py deleted file mode 100644 index 2c35eeca48ea..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy.py +++ /dev/null @@ -1,30 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class VolumePropertiesExportPolicy(Model): - """exportPolicy. - - Set of export policy rules. - - :param rules: Export policy rule. Export policy rule - :type rules: list[~azure.mgmt.netapp.models.ExportPolicyRule] - """ - - _attribute_map = { - 'rules': {'key': 'rules', 'type': '[ExportPolicyRule]'}, - } - - def __init__(self, **kwargs): - super(VolumePropertiesExportPolicy, self).__init__(**kwargs) - self.rules = kwargs.get('rules', None) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy_py3.py deleted file mode 100644 index f99f654f26ae..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy_py3.py +++ /dev/null @@ -1,30 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class VolumePropertiesExportPolicy(Model): - """exportPolicy. - - Set of export policy rules. - - :param rules: Export policy rule. Export policy rule - :type rules: list[~azure.mgmt.netapp.models.ExportPolicyRule] - """ - - _attribute_map = { - 'rules': {'key': 'rules', 'type': '[ExportPolicyRule]'}, - } - - def __init__(self, *, rules=None, **kwargs) -> None: - super(VolumePropertiesExportPolicy, self).__init__(**kwargs) - self.rules = rules diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py deleted file mode 100644 index eb5382162a98..000000000000 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py +++ /dev/null @@ -1,117 +0,0 @@ -# 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. -# -------------------------------------------------------------------------- - -from msrest.serialization import Model - - -class Volume(Model): - """Volume resource. - - 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: object - :ivar file_system_id: FileSystem ID. Unique FileSystem Identifier. - :vartype file_system_id: str - :param creation_token: Required. Creation Token or File Path. A unique - file path for the volume. Used when creating mount targets - :type creation_token: str - :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 usage_threshold: Required. usageThreshold. Maximum storage quota - allowed for a file system in bytes. This is a soft quota used for alerting - only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes. - Default value: 107374182400 . - :type usage_threshold: long - :param export_policy: exportPolicy. Set of export policy rules - :type export_policy: - ~azure.mgmt.netapp.models.VolumePropertiesExportPolicy - :param protocol_types: protocolTypes. Set of protocol types - :type protocol_types: list[str] - :ivar provisioning_state: Azure lifecycle management - :vartype provisioning_state: str - :param snapshot_id: Snapshot ID. UUID v4 or resource identifier used to - identify the Snapshot. - :type snapshot_id: str - :ivar baremetal_tenant_id: Baremetal Tenant ID. Unique Baremetal Tenant - Identifier. - :vartype baremetal_tenant_id: str - :param subnet_id: Required. The Azure Resource URI for a delegated subnet. - Must have the delegation Microsoft.NetApp/volumes - :type subnet_id: str - :param mount_targets: mountTargets. List of mount targets - :type mount_targets: object - """ - - _validation = { - 'location': {'required': True}, - 'id': {'readonly': True}, - 'name': {'readonly': True}, - 'type': {'readonly': True}, - 'file_system_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}$'}, - 'creation_token': {'required': True}, - '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}|(\\?([^\/]*[\/])*)([^\/]+)$'}, - '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}, - } - - _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': 'object'}, - 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, - 'creation_token': {'key': 'properties.creationToken', 'type': 'str'}, - 'service_level': {'key': 'properties.serviceLevel', 'type': 'str'}, - 'usage_threshold': {'key': 'properties.usageThreshold', 'type': 'long'}, - 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePropertiesExportPolicy'}, - 'protocol_types': {'key': 'properties.protocolTypes', 'type': '[str]'}, - 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'snapshot_id': {'key': 'properties.snapshotId', 'type': 'str'}, - 'baremetal_tenant_id': {'key': 'properties.baremetalTenantId', 'type': 'str'}, - 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, - 'mount_targets': {'key': 'properties.mountTargets', 'type': 'object'}, - } - - 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, **kwargs) -> None: - super(Volume, self).__init__(**kwargs) - self.location = location - self.id = None - self.name = None - self.type = None - self.tags = tags - self.file_system_id = None - self.creation_token = creation_token - self.service_level = service_level - self.usage_threshold = usage_threshold - self.export_policy = export_policy - self.protocol_types = protocol_types - self.provisioning_state = None - self.snapshot_id = snapshot_id - self.baremetal_tenant_id = None - self.subnet_id = subnet_id - self.mount_targets = mount_targets 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 99c673b8e4d8..1cc05160eaec 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 @@ -9,12 +9,13 @@ # regenerated. # -------------------------------------------------------------------------- -from .operations import Operations -from .accounts_operations import AccountsOperations -from .pools_operations import PoolsOperations -from .volumes_operations import VolumesOperations -from .mount_targets_operations import MountTargetsOperations -from .snapshots_operations import SnapshotsOperations +from ._operations import Operations +from ._accounts_operations import AccountsOperations +from ._pools_operations import PoolsOperations +from ._volumes_operations import VolumesOperations +from ._mount_targets_operations import MountTargetsOperations +from ._snapshots_operations import SnapshotsOperations +from ._azure_net_app_files_management_client_operations import AzureNetAppFilesManagementClientOperationsMixin __all__ = [ 'Operations', @@ -23,4 +24,5 @@ 'VolumesOperations', 'MountTargetsOperations', 'SnapshotsOperations', + 'AzureNetAppFilesManagementClientOperationsMixin', ] 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 similarity index 97% rename from sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py rename to sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_accounts_operations.py index afe23568a1ed..1fbf6995b910 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 @@ -21,11 +21,13 @@ class AccountsOperations(object): """AccountsOperations 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: "2019-06-01". + :ivar api_version: Version of the API to be used with the client request. Constant value: "2019-07-01". """ models = models @@ -35,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2019-06-01" + self.api_version = "2019-07-01" self.config = config @@ -57,8 +59,7 @@ def list( ~azure.mgmt.netapp.models.NetAppAccountPaged[~azure.mgmt.netapp.models.NetAppAccount] :raises: :class:`CloudError` """ - def internal_paging(next_link=None, raw=False): - + def prepare_request(next_link=None): if not next_link: # Construct URL url = self.list.metadata['url'] @@ -88,6 +89,11 @@ def internal_paging(next_link=None, raw=False): # 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]: @@ -98,12 +104,10 @@ def internal_paging(next_link=None, raw=False): return response # Deserialize response - deserialized = models.NetAppAccountPaged(internal_paging, self._deserialize.dependencies) - + header_dict = None if raw: header_dict = {} - client_raw_response = models.NetAppAccountPaged(internal_paging, self._deserialize.dependencies, header_dict) - return client_raw_response + deserialized = models.NetAppAccountPaged(internal_paging, self._deserialize.dependencies, header_dict) return deserialized list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts'} @@ -161,7 +165,6 @@ def get( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('NetAppAccount', response) @@ -419,7 +422,6 @@ def update( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('NetAppAccount', response) 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/operations/_azure_net_app_files_management_client_operations.py similarity index 64% rename from sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/azure_net_app_files_management_client.py rename to sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_azure_net_app_files_management_client_operations.py index 48e6f19a4017..c68b29b3f483 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/operations/_azure_net_app_files_management_client_operations.py @@ -9,110 +9,15 @@ # regenerated. # -------------------------------------------------------------------------- -from msrest.service_client import SDKClient -from msrest import Serializer, Deserializer -from msrestazure import AzureConfiguration -from .version import VERSION 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 import uuid -from .operations.operations import Operations -from .operations.accounts_operations import AccountsOperations -from .operations.pools_operations import PoolsOperations -from .operations.volumes_operations import VolumesOperations -from .operations.mount_targets_operations import MountTargetsOperations -from .operations.snapshots_operations import SnapshotsOperations -from . import models -class AzureNetAppFilesManagementClientConfiguration(AzureConfiguration): - """Configuration for AzureNetAppFilesManagementClient - Note that all parameters used to create this instance are saved as instance - attributes. - - :param credentials: Credentials needed for the client to connect to Azure. - :type credentials: :mod:`A msrestazure Credentials - object` - :param subscription_id: Subscription credentials which uniquely identify - Microsoft Azure subscription. The subscription ID forms part of the URI - for every service call. - :type subscription_id: str - :param str base_url: Service URL - """ - - def __init__( - self, credentials, subscription_id, base_url=None): - - if credentials is None: - raise ValueError("Parameter 'credentials' must not be None.") - if subscription_id is None: - raise ValueError("Parameter 'subscription_id' must not be None.") - if not base_url: - base_url = 'https://management.azure.com' - - super(AzureNetAppFilesManagementClientConfiguration, self).__init__(base_url) - - self.add_user_agent('azure-mgmt-netapp/{}'.format(VERSION)) - self.add_user_agent('Azure-SDK-For-Python') - - self.credentials = credentials - self.subscription_id = subscription_id - - -class AzureNetAppFilesManagementClient(SDKClient): - """Microsoft NetApp Azure Resource Provider specification - - :ivar config: Configuration for client. - :vartype config: AzureNetAppFilesManagementClientConfiguration - - :ivar operations: Operations operations - :vartype operations: azure.mgmt.netapp.operations.Operations - :ivar accounts: Accounts operations - :vartype accounts: azure.mgmt.netapp.operations.AccountsOperations - :ivar pools: Pools operations - :vartype pools: azure.mgmt.netapp.operations.PoolsOperations - :ivar volumes: Volumes operations - :vartype volumes: azure.mgmt.netapp.operations.VolumesOperations - :ivar mount_targets: MountTargets operations - :vartype mount_targets: azure.mgmt.netapp.operations.MountTargetsOperations - :ivar snapshots: Snapshots operations - :vartype snapshots: azure.mgmt.netapp.operations.SnapshotsOperations - - :param credentials: Credentials needed for the client to connect to Azure. - :type credentials: :mod:`A msrestazure Credentials - object` - :param subscription_id: Subscription credentials which uniquely identify - Microsoft Azure subscription. The subscription ID forms part of the URI - for every service call. - :type subscription_id: str - :param str base_url: Service URL - """ - - def __init__( - self, credentials, subscription_id, base_url=None): - - self.config = AzureNetAppFilesManagementClientConfiguration(credentials, subscription_id, base_url) - 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 = '2019-06-01' - self._serialize = Serializer(client_models) - self._deserialize = Deserializer(client_models) - - self.operations = Operations( - self._client, self.config, self._serialize, self._deserialize) - self.accounts = AccountsOperations( - self._client, self.config, self._serialize, self._deserialize) - self.pools = PoolsOperations( - self._client, self.config, self._serialize, self._deserialize) - self.volumes = VolumesOperations( - self._client, self.config, self._serialize, self._deserialize) - self.mount_targets = MountTargetsOperations( - self._client, self.config, self._serialize, self._deserialize) - self.snapshots = SnapshotsOperations( - self._client, self.config, self._serialize, self._deserialize) +class AzureNetAppFilesManagementClientOperationsMixin(object): def check_name_availability( self, location, name, type, resource_group, custom_headers=None, raw=False, **operation_config): @@ -180,7 +85,6 @@ def check_name_availability( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('ResourceNameAvailability', response) @@ -257,7 +161,6 @@ def check_file_path_availability( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('ResourceNameAvailability', response) diff --git a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/mount_targets_operations.py b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_mount_targets_operations.py similarity index 91% rename from sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/mount_targets_operations.py rename to sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_mount_targets_operations.py index a1e784ff2ff8..62d57aa161ca 100644 --- a/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/mount_targets_operations.py +++ b/sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_mount_targets_operations.py @@ -19,11 +19,13 @@ class MountTargetsOperations(object): """MountTargetsOperations 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: "2019-06-01". + :ivar api_version: Version of the API to be used with the client request. Constant value: "2019-07-01". """ models = models @@ -33,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2019-06-01" + self.api_version = "2019-07-01" self.config = config @@ -61,8 +63,7 @@ def list( ~azure.mgmt.netapp.models.MountTargetPaged[~azure.mgmt.netapp.models.MountTarget] :raises: :class:`CloudError` """ - def internal_paging(next_link=None, raw=False): - + def prepare_request(next_link=None): if not next_link: # Construct URL url = self.list.metadata['url'] @@ -95,6 +96,11 @@ def internal_paging(next_link=None, raw=False): # 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]: @@ -105,12 +111,10 @@ def internal_paging(next_link=None, raw=False): return response # Deserialize response - deserialized = models.MountTargetPaged(internal_paging, self._deserialize.dependencies) - + header_dict = None if raw: header_dict = {} - client_raw_response = models.MountTargetPaged(internal_paging, self._deserialize.dependencies, header_dict) - return client_raw_response + deserialized = models.MountTargetPaged(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}/mountTargets'} 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 similarity index 88% rename from sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/operations.py rename to sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_operations.py index c61e14bfb0c0..9110970272c3 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 @@ -19,11 +19,13 @@ class Operations(object): """Operations 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: "2019-06-01". + :ivar api_version: Version of the API to be used with the client request. Constant value: "2019-07-01". """ models = models @@ -33,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2019-06-01" + self.api_version = "2019-07-01" self.config = config @@ -53,8 +55,7 @@ def list( ~azure.mgmt.netapp.models.OperationPaged[~azure.mgmt.netapp.models.Operation] :raises: :class:`CloudError` """ - def internal_paging(next_link=None, raw=False): - + def prepare_request(next_link=None): if not next_link: # Construct URL url = self.list.metadata['url'] @@ -79,6 +80,11 @@ def internal_paging(next_link=None, raw=False): # 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]: @@ -89,12 +95,10 @@ def internal_paging(next_link=None, raw=False): return response # Deserialize response - deserialized = models.OperationPaged(internal_paging, self._deserialize.dependencies) - + header_dict = None if raw: header_dict = {} - client_raw_response = models.OperationPaged(internal_paging, self._deserialize.dependencies, header_dict) - return client_raw_response + deserialized = models.OperationPaged(internal_paging, self._deserialize.dependencies, header_dict) return deserialized list.metadata = {'url': '/providers/Microsoft.NetApp/operations'} 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 similarity index 97% rename from sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/pools_operations.py rename to sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_pools_operations.py index d8df81ab6f55..c0c61e0b836a 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 @@ -21,11 +21,13 @@ class PoolsOperations(object): """PoolsOperations 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: "2019-06-01". + :ivar api_version: Version of the API to be used with the client request. Constant value: "2019-07-01". """ models = models @@ -35,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2019-06-01" + self.api_version = "2019-07-01" self.config = config @@ -59,8 +61,7 @@ def list( ~azure.mgmt.netapp.models.CapacityPoolPaged[~azure.mgmt.netapp.models.CapacityPool] :raises: :class:`CloudError` """ - def internal_paging(next_link=None, raw=False): - + def prepare_request(next_link=None): if not next_link: # Construct URL url = self.list.metadata['url'] @@ -91,6 +92,11 @@ def internal_paging(next_link=None, raw=False): # 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]: @@ -101,12 +107,10 @@ def internal_paging(next_link=None, raw=False): return response # Deserialize response - deserialized = models.CapacityPoolPaged(internal_paging, self._deserialize.dependencies) - + header_dict = None if raw: header_dict = {} - client_raw_response = models.CapacityPoolPaged(internal_paging, self._deserialize.dependencies, header_dict) - return client_raw_response + deserialized = models.CapacityPoolPaged(internal_paging, self._deserialize.dependencies, header_dict) return deserialized list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools'} @@ -167,7 +171,6 @@ def get( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('CapacityPool', response) @@ -350,7 +353,6 @@ def update( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('CapacityPool', response) 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 similarity index 98% rename from sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/snapshots_operations.py rename to sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_snapshots_operations.py index d126f356ca13..3f923b0e623b 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 @@ -21,11 +21,13 @@ class SnapshotsOperations(object): """SnapshotsOperations 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: "2019-06-01". + :ivar api_version: Version of the API to be used with the client request. Constant value: "2019-07-01". """ models = models @@ -35,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2019-06-01" + self.api_version = "2019-07-01" self.config = config @@ -63,8 +65,7 @@ def list( ~azure.mgmt.netapp.models.SnapshotPaged[~azure.mgmt.netapp.models.Snapshot] :raises: :class:`CloudError` """ - def internal_paging(next_link=None, raw=False): - + def prepare_request(next_link=None): if not next_link: # Construct URL url = self.list.metadata['url'] @@ -97,6 +98,11 @@ def internal_paging(next_link=None, raw=False): # 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]: @@ -107,12 +113,10 @@ def internal_paging(next_link=None, raw=False): return response # Deserialize response - deserialized = models.SnapshotPaged(internal_paging, self._deserialize.dependencies) - + header_dict = None if raw: header_dict = {} - client_raw_response = models.SnapshotPaged(internal_paging, self._deserialize.dependencies, header_dict) - return client_raw_response + deserialized = models.SnapshotPaged(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}/snapshots'} @@ -179,7 +183,6 @@ def get( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('Snapshot', response) @@ -374,7 +377,6 @@ def update( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('Snapshot', response) 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 similarity index 97% rename from sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/volumes_operations.py rename to sdk/netapp/azure-mgmt-netapp/azure/mgmt/netapp/operations/_volumes_operations.py index 2dc1df212f6c..45ad3859c50c 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 @@ -21,11 +21,13 @@ class VolumesOperations(object): """VolumesOperations 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: "2019-06-01". + :ivar api_version: Version of the API to be used with the client request. Constant value: "2019-07-01". """ models = models @@ -35,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2019-06-01" + self.api_version = "2019-07-01" self.config = config @@ -61,8 +63,7 @@ def list( ~azure.mgmt.netapp.models.VolumePaged[~azure.mgmt.netapp.models.Volume] :raises: :class:`CloudError` """ - def internal_paging(next_link=None, raw=False): - + def prepare_request(next_link=None): if not next_link: # Construct URL url = self.list.metadata['url'] @@ -94,6 +95,11 @@ def internal_paging(next_link=None, raw=False): # 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]: @@ -104,12 +110,10 @@ def internal_paging(next_link=None, raw=False): return response # Deserialize response - deserialized = models.VolumePaged(internal_paging, self._deserialize.dependencies) - + header_dict = None if raw: header_dict = {} - client_raw_response = models.VolumePaged(internal_paging, self._deserialize.dependencies, header_dict) - return client_raw_response + deserialized = models.VolumePaged(internal_paging, self._deserialize.dependencies, header_dict) return deserialized list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}/volumes'} @@ -173,7 +177,6 @@ def get( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('Volume', response) @@ -361,7 +364,6 @@ def update( raise exp deserialized = None - if response.status_code == 200: deserialized = self._deserialize('Volume', response) 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 266f5a486d79..5a7feab42d26 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.5.0" +VERSION = "0.6.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 59a632468fe9..01d4fe52bd07 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A37%3A12.7853117Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A01%3A21.9753657Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/568f76b4-dd70-4ae3-bbb3-15565fa3f505?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0531597b-4d4f-4342-8a9f-4098f89a2a8f?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:37:13 GMT + - Mon, 30 Sep 2019 08:01:22 GMT etag: - - W/"datetime'2019-07-02T16%3A37%3A12.7853117Z'" + - W/"datetime'2019-09-30T08%3A01%3A21.9753657Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/568f76b4-dd70-4ae3-bbb3-15565fa3f505?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0531597b-4d4f-4342-8a9f-4098f89a2a8f?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/568f76b4-dd70-4ae3-bbb3-15565fa3f505","name":"568f76b4-dd70-4ae3-bbb3-15565fa3f505","status":"Succeeded","startTime":"2019-07-02T16:37:12.6537396Z","endTime":"2019-07-02T16:37:12.9349716Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0531597b-4d4f-4342-8a9f-4098f89a2a8f","name":"0531597b-4d4f-4342-8a9f-4098f89a2a8f","status":"Succeeded","startTime":"2019-09-30T08:01:21.9343338Z","endTime":"2019-09-30T08:01:22.028111Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '516' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:37:43 GMT + - Mon, 30 Sep 2019 08:01:52 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A37%3A12.9234087Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A01%3A22.0274045Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:37:45 GMT + - Mon, 30 Sep 2019 08:01:53 GMT etag: - - W/"datetime'2019-07-02T16%3A37%3A12.9234087Z'" + - W/"datetime'2019-09-30T08%3A01%3A22.0274045Z'" expires: - '-1' pragma: @@ -166,26 +166,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A37%3A12.9234087Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A01%3A22.0274045Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '398' + - '394' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:37:45 GMT + - Mon, 30 Sep 2019 08:01:53 GMT expires: - '-1' pragma: @@ -219,30 +219,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/8f5803f0-cb68-4907-8f8c-af0cc9663acc?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f992a867-3e1f-4905-8ab0-3c9456f47194?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 16:37:47 GMT + - Mon, 30 Sep 2019 08:01:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f5803f0-cb68-4907-8f8c-af0cc9663acc?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f992a867-3e1f-4905-8ab0-3c9456f47194?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -270,24 +270,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f5803f0-cb68-4907-8f8c-af0cc9663acc?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f992a867-3e1f-4905-8ab0-3c9456f47194?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f5803f0-cb68-4907-8f8c-af0cc9663acc","name":"8f5803f0-cb68-4907-8f8c-af0cc9663acc","status":"Succeeded","startTime":"2019-07-02T16:37:48.2873285Z","endTime":"2019-07-02T16:37:48.4279538Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f992a867-3e1f-4905-8ab0-3c9456f47194","name":"f992a867-3e1f-4905-8ab0-3c9456f47194","status":"Succeeded","startTime":"2019-09-30T08:01:55.0895086Z","endTime":"2019-09-30T08:01:55.1988774Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:38:19 GMT + - Mon, 30 Sep 2019 08:02:25 GMT expires: - '-1' pragma: @@ -319,26 +319,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:38:21 GMT + - Mon, 30 Sep 2019 08:02:25 GMT expires: - '-1' pragma: @@ -362,18 +361,16 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[]}' + string: '{"value":[]}' headers: - access-control-expose-headers: - - Request-Context cache-control: - no-cache content-length: @@ -381,25 +378,17 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:38:23 GMT + - Mon, 30 Sep 2019 08:02: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 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 faf4463317cd..78f17322fbc8 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A38%3A29.7566163Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A02%3A31.0404236Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/876486cb-7e76-4e39-8f28-4916188ac428?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/da3089b1-96d7-4362-be7e-0070622b51e9?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:38:30 GMT + - Mon, 30 Sep 2019 08:02:31 GMT etag: - - W/"datetime'2019-07-02T16%3A38%3A29.7566163Z'" + - W/"datetime'2019-09-30T08%3A02%3A31.0404236Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/876486cb-7e76-4e39-8f28-4916188ac428?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/da3089b1-96d7-4362-be7e-0070622b51e9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/876486cb-7e76-4e39-8f28-4916188ac428","name":"876486cb-7e76-4e39-8f28-4916188ac428","status":"Succeeded","startTime":"2019-07-02T16:38:29.6141889Z","endTime":"2019-07-02T16:38:29.8798425Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/da3089b1-96d7-4362-be7e-0070622b51e9","name":"da3089b1-96d7-4362-be7e-0070622b51e9","status":"Succeeded","startTime":"2019-09-30T08:02:30.9672265Z","endTime":"2019-09-30T08:02:31.0921744Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:39:01 GMT + - Mon, 30 Sep 2019 08:03:03 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A38%3A29.8807034Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A02%3A31.0914592Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:39:04 GMT + - Mon, 30 Sep 2019 08:03:03 GMT etag: - - W/"datetime'2019-07-02T16%3A38%3A29.8807034Z'" + - W/"datetime'2019-09-30T08%3A02%3A31.0914592Z'" expires: - '-1' pragma: @@ -166,28 +166,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A38%3A29.8807034Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A02%3A31.0914592Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:39:05 GMT + - Mon, 30 Sep 2019 08:03:03 GMT etag: - - W/"datetime'2019-07-02T16%3A38%3A29.8807034Z'" + - W/"datetime'2019-09-30T08%3A02%3A31.0914592Z'" expires: - '-1' pragma: @@ -221,30 +221,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/09967400-d1a6-447d-b3eb-d93a6f8fafef?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2670a74a-ec8e-4fcd-af9d-a53038fd2ea0?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 16:39:08 GMT + - Mon, 30 Sep 2019 08:03:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/09967400-d1a6-447d-b3eb-d93a6f8fafef?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2670a74a-ec8e-4fcd-af9d-a53038fd2ea0?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -272,24 +272,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/09967400-d1a6-447d-b3eb-d93a6f8fafef?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2670a74a-ec8e-4fcd-af9d-a53038fd2ea0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/09967400-d1a6-447d-b3eb-d93a6f8fafef","name":"09967400-d1a6-447d-b3eb-d93a6f8fafef","status":"Succeeded","startTime":"2019-07-02T16:39:08.1642807Z","endTime":"2019-07-02T16:39:08.3205342Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2670a74a-ec8e-4fcd-af9d-a53038fd2ea0","name":"2670a74a-ec8e-4fcd-af9d-a53038fd2ea0","status":"Succeeded","startTime":"2019-09-30T08:03:04.8073862Z","endTime":"2019-09-30T08:03:04.8854279Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:39:40 GMT + - Mon, 30 Sep 2019 08:03:35 GMT expires: - '-1' pragma: @@ -321,26 +321,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:39:41 GMT + - Mon, 30 Sep 2019 08:03:36 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 4dbb3fe3e3e9..1a76ce37ed4c 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A39%3A47.8517188Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A03%3A40.738938Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/650da5f8-4a84-4673-aa26-b215988ce661?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa702dad-558d-4621-bd32-e24fe2725c6e?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '381' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:39:47 GMT + - Mon, 30 Sep 2019 08:03:41 GMT etag: - - W/"datetime'2019-07-02T16%3A39%3A47.8517188Z'" + - W/"datetime'2019-09-30T08%3A03%3A40.738938Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/650da5f8-4a84-4673-aa26-b215988ce661?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa702dad-558d-4621-bd32-e24fe2725c6e?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/650da5f8-4a84-4673-aa26-b215988ce661","name":"650da5f8-4a84-4673-aa26-b215988ce661","status":"Succeeded","startTime":"2019-07-02T16:39:47.7121673Z","endTime":"2019-07-02T16:39:47.9777928Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa702dad-558d-4621-bd32-e24fe2725c6e","name":"aa702dad-558d-4621-bd32-e24fe2725c6e","status":"Succeeded","startTime":"2019-09-30T08:03:40.5437876Z","endTime":"2019-09-30T08:03:40.7781571Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:40:19 GMT + - Mon, 30 Sep 2019 08:04:12 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A39%3A47.9748061Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A03%3A40.7869749Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:40:20 GMT + - Mon, 30 Sep 2019 08:04:12 GMT etag: - - W/"datetime'2019-07-02T16%3A39%3A47.9748061Z'" + - W/"datetime'2019-09-30T08%3A03%3A40.7869749Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -170,30 +170,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A40%3A24.603774Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A04%3A14.5144152Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-2","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/westcentralus/operationResults/f6a08bea-484a-43c1-8883-49af2a70f859?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/59ff9dad-180c-4358-a220-a94da57f4fb3?api-version=2019-07-01 cache-control: - no-cache content-length: - - '385' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:40:25 GMT + - Mon, 30 Sep 2019 08:04:14 GMT etag: - - W/"datetime'2019-07-02T16%3A40%3A24.603774Z'" + - W/"datetime'2019-09-30T08%3A04%3A14.5144152Z'" expires: - '-1' pragma: @@ -223,24 +223,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f6a08bea-484a-43c1-8883-49af2a70f859?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/59ff9dad-180c-4358-a220-a94da57f4fb3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f6a08bea-484a-43c1-8883-49af2a70f859","name":"f6a08bea-484a-43c1-8883-49af2a70f859","status":"Succeeded","startTime":"2019-07-02T16:40:24.4569023Z","endTime":"2019-07-02T16:40:24.7381526Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/59ff9dad-180c-4358-a220-a94da57f4fb3","name":"59ff9dad-180c-4358-a220-a94da57f4fb3","status":"Succeeded","startTime":"2019-09-30T08:04:14.3672927Z","endTime":"2019-09-30T08:04:14.55479Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '515' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:40:56 GMT + - Mon, 30 Sep 2019 08:04:46 GMT expires: - '-1' pragma: @@ -272,26 +272,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A40%3A24.7298624Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A04%3A14.5614488Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:40:57 GMT + - Mon, 30 Sep 2019 08:04:46 GMT etag: - - W/"datetime'2019-07-02T16%3A40%3A24.7298624Z'" + - W/"datetime'2019-09-30T08%3A04%3A14.5614488Z'" expires: - '-1' pragma: @@ -323,26 +323,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A39%3A47.9748061Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A40%3A24.7298624Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-2"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A03%3A40.7869749Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A04%3A14.5614488Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-2","provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '785' + - '777' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:41:00 GMT + - Mon, 30 Sep 2019 08:04:46 GMT expires: - '-1' pragma: @@ -376,30 +376,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/624cb7ab-cbe9-4d4e-adee-d6cc960d77cb?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7d45415-f3e7-4ebe-8419-5926b6ae8ddf?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 16:41:01 GMT + - Mon, 30 Sep 2019 08:04:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/624cb7ab-cbe9-4d4e-adee-d6cc960d77cb?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7d45415-f3e7-4ebe-8419-5926b6ae8ddf?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -427,24 +427,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/624cb7ab-cbe9-4d4e-adee-d6cc960d77cb?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7d45415-f3e7-4ebe-8419-5926b6ae8ddf?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/624cb7ab-cbe9-4d4e-adee-d6cc960d77cb","name":"624cb7ab-cbe9-4d4e-adee-d6cc960d77cb","status":"Succeeded","startTime":"2019-07-02T16:41:02.6288909Z","endTime":"2019-07-02T16:41:02.7694944Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c7d45415-f3e7-4ebe-8419-5926b6ae8ddf","name":"c7d45415-f3e7-4ebe-8419-5926b6ae8ddf","status":"Succeeded","startTime":"2019-09-30T08:04:47.607518Z","endTime":"2019-09-30T08:04:48.6075184Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '516' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:41:34 GMT + - Mon, 30 Sep 2019 08:05:18 GMT expires: - '-1' pragma: @@ -476,26 +476,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:41:36 GMT + - Mon, 30 Sep 2019 08:05:19 GMT expires: - '-1' pragma: @@ -521,30 +520,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/da6390ec-a62c-4d3f-bb56-5159bd96bf0f?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/04bc1e33-7a99-4ea5-a773-c02d329feaa3?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 16:41:39 GMT + - Mon, 30 Sep 2019 08:05:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/da6390ec-a62c-4d3f-bb56-5159bd96bf0f?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/04bc1e33-7a99-4ea5-a773-c02d329feaa3?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -572,24 +571,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/da6390ec-a62c-4d3f-bb56-5159bd96bf0f?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/04bc1e33-7a99-4ea5-a773-c02d329feaa3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/da6390ec-a62c-4d3f-bb56-5159bd96bf0f","name":"da6390ec-a62c-4d3f-bb56-5159bd96bf0f","status":"Succeeded","startTime":"2019-07-02T16:41:39.7046507Z","endTime":"2019-07-02T16:41:39.9234227Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/04bc1e33-7a99-4ea5-a773-c02d329feaa3","name":"04bc1e33-7a99-4ea5-a773-c02d329feaa3","status":"Succeeded","startTime":"2019-09-30T08:05:19.9503429Z","endTime":"2019-09-30T08:05:20.044061Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '516' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:42:12 GMT + - Mon, 30 Sep 2019 08:05:51 GMT expires: - '-1' pragma: @@ -621,26 +620,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:42:13 GMT + - Mon, 30 Sep 2019 08:05:50 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 2f06e8636ae8..d40c02a3c59d 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A42%3A23.0651334Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A05%3A55.5318701Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/8a78f7cf-4f49-41a5-89cd-1f4c01e8afb2?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d2c5fd6f-5904-4468-b143-d74c57afb3d0?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:42:23 GMT + - Mon, 30 Sep 2019 08:05:56 GMT etag: - - W/"datetime'2019-07-02T16%3A42%3A23.0651334Z'" + - W/"datetime'2019-09-30T08%3A05%3A55.5318701Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a78f7cf-4f49-41a5-89cd-1f4c01e8afb2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d2c5fd6f-5904-4468-b143-d74c57afb3d0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8a78f7cf-4f49-41a5-89cd-1f4c01e8afb2","name":"8a78f7cf-4f49-41a5-89cd-1f4c01e8afb2","status":"Succeeded","startTime":"2019-07-02T16:42:22.9320685Z","endTime":"2019-07-02T16:42:23.1976987Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d2c5fd6f-5904-4468-b143-d74c57afb3d0","name":"d2c5fd6f-5904-4468-b143-d74c57afb3d0","status":"Succeeded","startTime":"2019-09-30T08:05:55.4917775Z","endTime":"2019-09-30T08:05:55.6012154Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:42:58 GMT + - Mon, 30 Sep 2019 08:06:27 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A42%3A23.1892209Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A05%3A55.5949154Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:43:02 GMT + - Mon, 30 Sep 2019 08:06:27 GMT etag: - - W/"datetime'2019-07-02T16%3A42%3A23.1892209Z'" + - W/"datetime'2019-09-30T08%3A05%3A55.5949154Z'" expires: - '-1' pragma: @@ -157,7 +157,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"tags": {"Tag1": "Value2"}}' + body: '{"tags": {"Tag1": "Value2"}}' headers: Accept: - application/json @@ -170,28 +170,28 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T16%3A43%3A07.3673961Z''\"","location":"westcentralus","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A06%3A28.3023837Z''\"","location":"westcentralus","tags":{"Tag1":"Value2"},"properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '411' + - '407' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:43:08 GMT + - Mon, 30 Sep 2019 08:06:28 GMT etag: - - W/"datetime'2019-07-02T16%3A43%3A07.3673961Z'" + - W/"datetime'2019-09-30T08%3A06%3A28.3023837Z'" expires: - '-1' pragma: @@ -227,30 +227,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/dbcf80d6-1fb2-443e-9082-15e5743498f3?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/226ee11e-e276-4273-b5c1-eec3ad4de35e?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 16:43:12 GMT + - Mon, 30 Sep 2019 08:06:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dbcf80d6-1fb2-443e-9082-15e5743498f3?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/226ee11e-e276-4273-b5c1-eec3ad4de35e?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -278,24 +278,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dbcf80d6-1fb2-443e-9082-15e5743498f3?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/226ee11e-e276-4273-b5c1-eec3ad4de35e?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dbcf80d6-1fb2-443e-9082-15e5743498f3","name":"dbcf80d6-1fb2-443e-9082-15e5743498f3","status":"Succeeded","startTime":"2019-07-02T16:43:12.6225426Z","endTime":"2019-07-02T16:43:12.763171Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/226ee11e-e276-4273-b5c1-eec3ad4de35e","name":"226ee11e-e276-4273-b5c1-eec3ad4de35e","status":"Succeeded","startTime":"2019-09-30T08:06:29.803747Z","endTime":"2019-09-30T08:06:29.8818699Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '520' + - '516' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:43:45 GMT + - Mon, 30 Sep 2019 08:07:01 GMT expires: - '-1' pragma: @@ -327,26 +327,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 16:43:50 GMT + - Mon, 30 Sep 2019 08:07:00 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_mounttarget.test_list_mount_target.yaml b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_mounttarget.test_list_mount_target.yaml index c2199c8cc232..5a72c5ac9fb5 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_mounttarget.test_list_mount_target.yaml +++ b/sdk/netapp/azure-mgmt-netapp/tests/recordings/test_mounttarget.test_list_mount_target.yaml @@ -1,6 +1,6 @@ interactions: - request: - body: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A03%3A50.8825017Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T12%3A32%3A52.4590011Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/2f8e7442-6ce5-49cd-bff2-329431d82362?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9865d2c-6b00-4ebe-bec5-9e376b337f4f?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:03:51 GMT + - Fri, 27 Sep 2019 12:32:52 GMT etag: - - W/"datetime'2019-07-02T23%3A03%3A50.8825017Z'" + - W/"datetime'2019-09-27T12%3A32%3A52.4590011Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2f8e7442-6ce5-49cd-bff2-329431d82362?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9865d2c-6b00-4ebe-bec5-9e376b337f4f?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2f8e7442-6ce5-49cd-bff2-329431d82362","name":"2f8e7442-6ce5-49cd-bff2-329431d82362","status":"Succeeded","startTime":"2019-07-02T23:03:50.7376591Z","endTime":"2019-07-02T23:03:51.0740124Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c9865d2c-6b00-4ebe-bec5-9e376b337f4f","name":"c9865d2c-6b00-4ebe-bec5-9e376b337f4f","status":"Succeeded","startTime":"2019-09-27T12:32:52.3590335Z","endTime":"2019-09-27T12:32:52.5464766Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:04:21 GMT + - Fri, 27 Sep 2019 12:33:23 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A03%3A51.0506202Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T12%3A32%3A52.5500669Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:04:23 GMT + - Fri, 27 Sep 2019 12:33:24 GMT etag: - - W/"datetime'2019-07-02T23%3A03%3A51.0506202Z'" + - W/"datetime'2019-09-27T12%3A32%3A52.5500669Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A04%3A26.6147271Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A33%3A26.2112479Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/20d0ac63-b256-4de7-a71b-933f42c5bc8c?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/877b2ebf-d197-4c9a-b70a-531b30ba96d1?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:04:27 GMT + - Fri, 27 Sep 2019 12:33:26 GMT etag: - - W/"datetime'2019-07-02T23%3A04%3A26.6147271Z'" + - W/"datetime'2019-09-27T12%3A33%3A26.2112479Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20d0ac63-b256-4de7-a71b-933f42c5bc8c?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/877b2ebf-d197-4c9a-b70a-531b30ba96d1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/20d0ac63-b256-4de7-a71b-933f42c5bc8c","name":"20d0ac63-b256-4de7-a71b-933f42c5bc8c","status":"Succeeded","startTime":"2019-07-02T23:04:26.4756019Z","endTime":"2019-07-02T23:04:27.3818352Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/877b2ebf-d197-4c9a-b70a-531b30ba96d1","name":"877b2ebf-d197-4c9a-b70a-531b30ba96d1","status":"Succeeded","startTime":"2019-09-27T12:33:26.1179079Z","endTime":"2019-09-27T12:33:26.5628461Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:04:57 GMT + - Fri, 27 Sep 2019 12:33:58 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A04%3A27.3732623Z''\"","location":"westcentralus","properties":{"poolId":"e1297a6c-f166-da05-391b-c5a4184a0e3e","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A33%3A26.5625002Z''\"","location":"westcentralus","properties":{"poolId":"d28d5cea-ff2f-f089-57f8-29f46fa26156","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:04:59 GMT + - Fri, 27 Sep 2019 12:33:58 GMT etag: - - W/"datetime'2019-07-02T23%3A04%3A27.3732623Z'" + - W/"datetime'2019-09-27T12%3A33%3A26.5625002Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A05%3A02.857313Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A34%3A00.3908029Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94ba6238-c566-4162-b40c-019f1c13adaf?api-version=2019-07-01 cache-control: - no-cache content-length: - - '757' + - '746' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:05:02 GMT + - Fri, 27 Sep 2019 12:34:01 GMT etag: - - W/"datetime'2019-07-02T23%3A05%3A02.857313Z'" + - W/"datetime'2019-09-27T12%3A34%3A00.3908029Z'" expires: - '-1' pragma: @@ -370,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -386,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94ba6238-c566-4162-b40c-019f1c13adaf?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5","name":"66d70385-d35a-4dd5-91e4-80631407e8e5","status":"Creating","startTime":"2019-07-02T23:05:02.7184758Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/94ba6238-c566-4162-b40c-019f1c13adaf","name":"94ba6238-c566-4162-b40c-019f1c13adaf","status":"Creating","startTime":"2019-09-27T12:34:00.3454933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:05:34 GMT + - Fri, 27 Sep 2019 12:34:32 GMT expires: - '-1' pragma: @@ -435,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94ba6238-c566-4162-b40c-019f1c13adaf?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5","name":"66d70385-d35a-4dd5-91e4-80631407e8e5","status":"Creating","startTime":"2019-07-02T23:05:02.7184758Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/94ba6238-c566-4162-b40c-019f1c13adaf","name":"94ba6238-c566-4162-b40c-019f1c13adaf","status":"Creating","startTime":"2019-09-27T12:34:00.3454933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:06:05 GMT + - Fri, 27 Sep 2019 12:35:02 GMT expires: - '-1' pragma: @@ -484,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94ba6238-c566-4162-b40c-019f1c13adaf?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5","name":"66d70385-d35a-4dd5-91e4-80631407e8e5","status":"Creating","startTime":"2019-07-02T23:05:02.7184758Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/94ba6238-c566-4162-b40c-019f1c13adaf","name":"94ba6238-c566-4162-b40c-019f1c13adaf","status":"Creating","startTime":"2019-09-27T12:34:00.3454933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:06:36 GMT + - Fri, 27 Sep 2019 12:35:32 GMT expires: - '-1' pragma: @@ -533,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94ba6238-c566-4162-b40c-019f1c13adaf?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5","name":"66d70385-d35a-4dd5-91e4-80631407e8e5","status":"Creating","startTime":"2019-07-02T23:05:02.7184758Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/94ba6238-c566-4162-b40c-019f1c13adaf","name":"94ba6238-c566-4162-b40c-019f1c13adaf","status":"Creating","startTime":"2019-09-27T12:34:00.3454933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:07:07 GMT + - Fri, 27 Sep 2019 12:36:02 GMT expires: - '-1' pragma: @@ -582,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94ba6238-c566-4162-b40c-019f1c13adaf?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5","name":"66d70385-d35a-4dd5-91e4-80631407e8e5","status":"Creating","startTime":"2019-07-02T23:05:02.7184758Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/94ba6238-c566-4162-b40c-019f1c13adaf","name":"94ba6238-c566-4162-b40c-019f1c13adaf","status":"Creating","startTime":"2019-09-27T12:34:00.3454933Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:07:38 GMT + - Fri, 27 Sep 2019 12:36:34 GMT expires: - '-1' pragma: @@ -631,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94ba6238-c566-4162-b40c-019f1c13adaf?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/66d70385-d35a-4dd5-91e4-80631407e8e5","name":"66d70385-d35a-4dd5-91e4-80631407e8e5","status":"Succeeded","startTime":"2019-07-02T23:05:02.7184758Z","endTime":"2019-07-02T23:07:42.010158Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/94ba6238-c566-4162-b40c-019f1c13adaf","name":"94ba6238-c566-4162-b40c-019f1c13adaf","status":"Succeeded","startTime":"2019-09-27T12:34:00.3454933Z","endTime":"2019-09-27T12:36:58.0399251Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '581' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:08:09 GMT + - Fri, 27 Sep 2019 12:37:04 GMT expires: - '-1' pragma: @@ -680,26 +679,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A07%3A42.0075587Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"fa03d924-e769-35d4-ac28-d4b7b3392acf","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_4f5f3328","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"31107260-e578-f62d-bfec-2bd6fbcddff6","fileSystemId":"fa03d924-e769-35d4-ac28-d4b7b3392acf","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A36%3A58.040503Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"bec57d01-4664-6423-71f0-cb29336012eb","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_b660c06e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"bb16c6a3-f94f-5053-1190-a439140ec909","fileSystemId":"bec57d01-4664-6423-71f0-cb29336012eb","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1405' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:08:10 GMT + - Fri, 27 Sep 2019 12:37:04 GMT etag: - - W/"datetime'2019-07-02T23%3A07%3A42.0075587Z'" + - W/"datetime'2019-09-27T12%3A36%3A58.040503Z'" expires: - '-1' pragma: @@ -731,26 +730,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/mountTargets?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/mountTargets?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/mountTargets/31107260-e578-f62d-bfec-2bd6fbcddff6","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/31107260-e578-f62d-bfec-2bd6fbcddff6","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westcentralus","properties":{"provisioningState":"Succeeded","mountTargetId":"31107260-e578-f62d-bfec-2bd6fbcddff6","fileSystemId":"fa03d924-e769-35d4-ac28-d4b7b3392acf","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/mountTargets/bb16c6a3-f94f-5053-1190-a439140ec909","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/bb16c6a3-f94f-5053-1190-a439140ec909","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westcentralus","properties":{"provisioningState":"Succeeded","mountTargetId":"bb16c6a3-f94f-5053-1190-a439140ec909","fileSystemId":"bec57d01-4664-6423-71f0-cb29336012eb","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '759' + - '728' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:08:11 GMT + - Fri, 27 Sep 2019 12:37:05 GMT expires: - '-1' pragma: @@ -784,30 +783,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/0c5050ba-f1f8-41f5-ae3a-67e587e919a8?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a75667fb-65ea-40e3-a021-5d5d075983b2?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:08:14 GMT + - Fri, 27 Sep 2019 12:37:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c5050ba-f1f8-41f5-ae3a-67e587e919a8?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a75667fb-65ea-40e3-a021-5d5d075983b2?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -835,24 +834,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c5050ba-f1f8-41f5-ae3a-67e587e919a8?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a75667fb-65ea-40e3-a021-5d5d075983b2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c5050ba-f1f8-41f5-ae3a-67e587e919a8","name":"0c5050ba-f1f8-41f5-ae3a-67e587e919a8","status":"Deleting","startTime":"2019-07-02T23:08:14.0750599Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/a75667fb-65ea-40e3-a021-5d5d075983b2","name":"a75667fb-65ea-40e3-a021-5d5d075983b2","status":"Deleting","startTime":"2019-09-27T12:37:07.2058944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:08:45 GMT + - Fri, 27 Sep 2019 12:37:37 GMT expires: - '-1' pragma: @@ -884,24 +883,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c5050ba-f1f8-41f5-ae3a-67e587e919a8?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a75667fb-65ea-40e3-a021-5d5d075983b2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c5050ba-f1f8-41f5-ae3a-67e587e919a8","name":"0c5050ba-f1f8-41f5-ae3a-67e587e919a8","status":"Deleting","startTime":"2019-07-02T23:08:14.0750599Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/a75667fb-65ea-40e3-a021-5d5d075983b2","name":"a75667fb-65ea-40e3-a021-5d5d075983b2","status":"Deleting","startTime":"2019-09-27T12:37:07.2058944Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:09:16 GMT + - Fri, 27 Sep 2019 12:38:08 GMT expires: - '-1' pragma: @@ -933,24 +932,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c5050ba-f1f8-41f5-ae3a-67e587e919a8?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a75667fb-65ea-40e3-a021-5d5d075983b2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c5050ba-f1f8-41f5-ae3a-67e587e919a8","name":"0c5050ba-f1f8-41f5-ae3a-67e587e919a8","status":"Succeeded","startTime":"2019-07-02T23:08:14.0750599Z","endTime":"2019-07-02T23:09:21.0618609Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/a75667fb-65ea-40e3-a021-5d5d075983b2","name":"a75667fb-65ea-40e3-a021-5d5d075983b2","status":"Succeeded","startTime":"2019-09-27T12:37:07.2058944Z","endTime":"2019-09-27T12:38:14.6646106Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:09:46 GMT + - Fri, 27 Sep 2019 12:38:39 GMT expires: - '-1' pragma: @@ -982,26 +981,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:09:48 GMT + - Fri, 27 Sep 2019 12:38:39 GMT expires: - '-1' pragma: @@ -1027,30 +1025,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/24d71d95-3d11-44d0-a2eb-c19368e576f7?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bf24a4ed-02ed-43ec-8946-8611613ad9f7?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:09:49 GMT + - Fri, 27 Sep 2019 12:38:40 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/24d71d95-3d11-44d0-a2eb-c19368e576f7?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bf24a4ed-02ed-43ec-8946-8611613ad9f7?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1078,24 +1076,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/24d71d95-3d11-44d0-a2eb-c19368e576f7?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bf24a4ed-02ed-43ec-8946-8611613ad9f7?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/24d71d95-3d11-44d0-a2eb-c19368e576f7","name":"24d71d95-3d11-44d0-a2eb-c19368e576f7","status":"Succeeded","startTime":"2019-07-02T23:09:50.0824589Z","endTime":"2019-07-02T23:09:50.3793294Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/bf24a4ed-02ed-43ec-8946-8611613ad9f7","name":"bf24a4ed-02ed-43ec-8946-8611613ad9f7","status":"Succeeded","startTime":"2019-09-27T12:38:41.1787572Z","endTime":"2019-09-27T12:38:41.4131057Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:10:20 GMT + - Fri, 27 Sep 2019 12:39:12 GMT expires: - '-1' pragma: @@ -1127,26 +1125,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:10:21 GMT + - Fri, 27 Sep 2019 12:39:12 GMT expires: - '-1' pragma: @@ -1172,30 +1169,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/51455ec4-6326-483b-85ac-58ee7a39b911?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a0609926-ad5f-46ec-b5fd-3b47459feb5b?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:10:23 GMT + - Fri, 27 Sep 2019 12:39:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/51455ec4-6326-483b-85ac-58ee7a39b911?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a0609926-ad5f-46ec-b5fd-3b47459feb5b?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1223,24 +1220,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/51455ec4-6326-483b-85ac-58ee7a39b911?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a0609926-ad5f-46ec-b5fd-3b47459feb5b?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/51455ec4-6326-483b-85ac-58ee7a39b911","name":"51455ec4-6326-483b-85ac-58ee7a39b911","status":"Succeeded","startTime":"2019-07-02T23:10:23.5202118Z","endTime":"2019-07-02T23:10:23.7076884Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a0609926-ad5f-46ec-b5fd-3b47459feb5b","name":"a0609926-ad5f-46ec-b5fd-3b47459feb5b","status":"Succeeded","startTime":"2019-09-27T12:39:13.5361262Z","endTime":"2019-09-27T12:39:13.6121612Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:10:54 GMT + - Fri, 27 Sep 2019 12:39:44 GMT expires: - '-1' pragma: @@ -1272,26 +1269,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:10:55 GMT + - Fri, 27 Sep 2019 12:39:45 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 89eb4ece1080..7254cc3b5875 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T08%3A52%3A04.0730992Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A09%3A15.3385115Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/9c919ce1-c7d9-4772-9fa4-bcf28ccdf063?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dda14ecc-b129-46d6-83ae-c0c9a7c9144c?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:52:04 GMT + - Mon, 30 Sep 2019 08:09:15 GMT etag: - - W/"datetime'2019-07-03T08%3A52%3A04.0730992Z'" + - W/"datetime'2019-09-30T08%3A09%3A15.3385115Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9c919ce1-c7d9-4772-9fa4-bcf28ccdf063?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dda14ecc-b129-46d6-83ae-c0c9a7c9144c?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9c919ce1-c7d9-4772-9fa4-bcf28ccdf063","name":"9c919ce1-c7d9-4772-9fa4-bcf28ccdf063","status":"Succeeded","startTime":"2019-07-03T08:52:03.8912207Z","endTime":"2019-07-03T08:52:04.2036996Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dda14ecc-b129-46d6-83ae-c0c9a7c9144c","name":"dda14ecc-b129-46d6-83ae-c0c9a7c9144c","status":"Succeeded","startTime":"2019-09-30T08:09:15.2801382Z","endTime":"2019-09-30T08:09:15.4207839Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:52:37 GMT + - Mon, 30 Sep 2019 08:09:46 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T08%3A52%3A04.2041912Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A09%3A15.407561Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:52:38 GMT + - Mon, 30 Sep 2019 08:09:46 GMT etag: - - W/"datetime'2019-07-03T08%3A52%3A04.2041912Z'" + - W/"datetime'2019-09-30T08%3A09%3A15.407561Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A52%3A41.7826888Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A09%3A48.8128451Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/9d605b7f-2b88-443f-82b1-952da1641b7e?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c98fd454-fedc-4c8c-8d5e-848506dd313d?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:52:42 GMT + - Mon, 30 Sep 2019 08:09:49 GMT etag: - - W/"datetime'2019-07-03T08%3A52%3A41.7826888Z'" + - W/"datetime'2019-09-30T08%3A09%3A48.8128451Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9d605b7f-2b88-443f-82b1-952da1641b7e?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c98fd454-fedc-4c8c-8d5e-848506dd313d?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9d605b7f-2b88-443f-82b1-952da1641b7e","name":"9d605b7f-2b88-443f-82b1-952da1641b7e","status":"Succeeded","startTime":"2019-07-03T08:52:41.6685007Z","endTime":"2019-07-03T08:52:42.1997505Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/c98fd454-fedc-4c8c-8d5e-848506dd313d","name":"c98fd454-fedc-4c8c-8d5e-848506dd313d","status":"Succeeded","startTime":"2019-09-30T08:09:48.7482976Z","endTime":"2019-09-30T08:09:49.2482974Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:53:13 GMT + - Mon, 30 Sep 2019 08:10:19 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A52%3A42.1909767Z''\"","location":"westcentralus","properties":{"poolId":"25ef3993-7a36-140a-ad9d-2e2270643e0f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A09%3A49.203128Z''\"","location":"westcentralus","properties":{"poolId":"701b5eef-5c94-6fef-74fe-891da90368cd","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:53:14 GMT + - Mon, 30 Sep 2019 08:10:20 GMT etag: - - W/"datetime'2019-07-03T08%3A52%3A42.1909767Z'" + - W/"datetime'2019-09-30T08%3A09%3A49.203128Z'" expires: - '-1' pragma: @@ -326,26 +326,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A52%3A42.1909767Z''\"","location":"westcentralus","properties":{"poolId":"25ef3993-7a36-140a-ad9d-2e2270643e0f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A09%3A49.203128Z''\"","location":"westcentralus","properties":{"poolId":"701b5eef-5c94-6fef-74fe-891da90368cd","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '580' + - '575' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:53:15 GMT + - Mon, 30 Sep 2019 08:10:20 GMT expires: - '-1' pragma: @@ -379,30 +379,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/55039c9a-eaa7-4175-bfc0-bbbcac97793b?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e15d73a4-c07b-4d84-b0bc-677a40006235?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 08:53:18 GMT + - Mon, 30 Sep 2019 08:10:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/55039c9a-eaa7-4175-bfc0-bbbcac97793b?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e15d73a4-c07b-4d84-b0bc-677a40006235?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -430,24 +430,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/55039c9a-eaa7-4175-bfc0-bbbcac97793b?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e15d73a4-c07b-4d84-b0bc-677a40006235?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/55039c9a-eaa7-4175-bfc0-bbbcac97793b","name":"55039c9a-eaa7-4175-bfc0-bbbcac97793b","status":"Succeeded","startTime":"2019-07-03T08:53:17.8706524Z","endTime":"2019-07-03T08:53:18.7822955Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/e15d73a4-c07b-4d84-b0bc-677a40006235","name":"e15d73a4-c07b-4d84-b0bc-677a40006235","status":"Succeeded","startTime":"2019-09-30T08:10:22.6415331Z","endTime":"2019-09-30T08:10:22.8472569Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:53:49 GMT + - Mon, 30 Sep 2019 08:10:52 GMT expires: - '-1' pragma: @@ -479,15 +479,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[]}' + string: '{"value":[]}' headers: access-control-expose-headers: - Request-Context @@ -498,7 +498,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:53:50 GMT + - Mon, 30 Sep 2019 08:10:53 GMT expires: - '-1' pragma: @@ -530,26 +530,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:54:01 GMT + - Mon, 30 Sep 2019 08:11:03 GMT expires: - '-1' pragma: @@ -575,30 +574,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/820ebc9d-ef96-48a2-9376-2a2091976387?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5bd33e7f-3554-44e2-9108-421e399c7179?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 08:54:03 GMT + - Mon, 30 Sep 2019 08:11:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/820ebc9d-ef96-48a2-9376-2a2091976387?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5bd33e7f-3554-44e2-9108-421e399c7179?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -610,7 +609,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -626,24 +625,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/820ebc9d-ef96-48a2-9376-2a2091976387?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5bd33e7f-3554-44e2-9108-421e399c7179?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/820ebc9d-ef96-48a2-9376-2a2091976387","name":"820ebc9d-ef96-48a2-9376-2a2091976387","status":"Succeeded","startTime":"2019-07-03T08:54:03.2935098Z","endTime":"2019-07-03T08:54:03.4653775Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5bd33e7f-3554-44e2-9108-421e399c7179","name":"5bd33e7f-3554-44e2-9108-421e399c7179","status":"Succeeded","startTime":"2019-09-30T08:11:04.3023192Z","endTime":"2019-09-30T08:11:04.380434Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:54:34 GMT + - Mon, 30 Sep 2019 08:11:35 GMT expires: - '-1' pragma: @@ -675,26 +674,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:54:37 GMT + - Mon, 30 Sep 2019 08:11:37 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 dccfb68bdf09..2bcf6d01cbfc 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T08%3A54%3A41.9023886Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A11%3A42.2365912Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/0e1d4474-1f2f-45bd-b001-67e6c1127e5b?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e3c9f2cf-376e-452d-8d4f-f510d4c357d7?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:54:41 GMT + - Mon, 30 Sep 2019 08:11:42 GMT etag: - - W/"datetime'2019-07-03T08%3A54%3A41.9023886Z'" + - W/"datetime'2019-09-30T08%3A11%3A42.2365912Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e1d4474-1f2f-45bd-b001-67e6c1127e5b?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e3c9f2cf-376e-452d-8d4f-f510d4c357d7?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e1d4474-1f2f-45bd-b001-67e6c1127e5b","name":"0e1d4474-1f2f-45bd-b001-67e6c1127e5b","status":"Succeeded","startTime":"2019-07-03T08:54:41.7547305Z","endTime":"2019-07-03T08:54:42.0203318Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e3c9f2cf-376e-452d-8d4f-f510d4c357d7","name":"e3c9f2cf-376e-452d-8d4f-f510d4c357d7","status":"Succeeded","startTime":"2019-09-30T08:11:42.2018304Z","endTime":"2019-09-30T08:11:42.2955795Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:55:13 GMT + - Mon, 30 Sep 2019 08:12:13 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T08%3A54%3A42.0254754Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A11%3A42.289631Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:55:14 GMT + - Mon, 30 Sep 2019 08:12:13 GMT etag: - - W/"datetime'2019-07-03T08%3A54%3A42.0254754Z'" + - W/"datetime'2019-09-30T08%3A11%3A42.289631Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A55%3A17.6355855Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A12%3A15.6316025Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/c758cb57-da2b-4110-a442-a89ec08f01d0?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/df528e3c-ea74-4dbf-ae01-d42ccc9f436e?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:55:18 GMT + - Mon, 30 Sep 2019 08:12:15 GMT etag: - - W/"datetime'2019-07-03T08%3A55%3A17.6355855Z'" + - W/"datetime'2019-09-30T08%3A12%3A15.6316025Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c758cb57-da2b-4110-a442-a89ec08f01d0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/df528e3c-ea74-4dbf-ae01-d42ccc9f436e?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c758cb57-da2b-4110-a442-a89ec08f01d0","name":"c758cb57-da2b-4110-a442-a89ec08f01d0","status":"Succeeded","startTime":"2019-07-03T08:55:17.4974094Z","endTime":"2019-07-03T08:55:18.0911607Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/df528e3c-ea74-4dbf-ae01-d42ccc9f436e","name":"df528e3c-ea74-4dbf-ae01-d42ccc9f436e","status":"Succeeded","startTime":"2019-09-30T08:12:15.5925443Z","endTime":"2019-09-30T08:12:15.9733376Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:55:48 GMT + - Mon, 30 Sep 2019 08:12:47 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A55%3A18.0939083Z''\"","location":"westcentralus","properties":{"poolId":"90a6548f-add3-b683-7482-c19de89ae200","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A12%3A15.9638507Z''\"","location":"westcentralus","properties":{"poolId":"61c35bd7-3f93-7436-744c-a74783ee34fd","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:55:50 GMT + - Mon, 30 Sep 2019 08:12:47 GMT etag: - - W/"datetime'2019-07-03T08%3A55%3A18.0939083Z'" + - W/"datetime'2019-09-30T08%3A12%3A15.9638507Z'" expires: - '-1' pragma: @@ -326,28 +326,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A55%3A18.0939083Z''\"","location":"westcentralus","properties":{"poolId":"90a6548f-add3-b683-7482-c19de89ae200","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A12%3A15.9638507Z''\"","location":"westcentralus","properties":{"poolId":"61c35bd7-3f93-7436-744c-a74783ee34fd","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:55:50 GMT + - Mon, 30 Sep 2019 08:12:47 GMT etag: - - W/"datetime'2019-07-03T08%3A55%3A18.0939083Z'" + - W/"datetime'2019-09-30T08%3A12%3A15.9638507Z'" expires: - '-1' pragma: @@ -381,30 +381,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/c0f151ee-9d7a-447f-a764-197da0674c22?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6713f7c7-8173-4752-b4c3-a2b70f6e0fca?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 08:55:53 GMT + - Mon, 30 Sep 2019 08:12:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c0f151ee-9d7a-447f-a764-197da0674c22?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6713f7c7-8173-4752-b4c3-a2b70f6e0fca?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -432,24 +432,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c0f151ee-9d7a-447f-a764-197da0674c22?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6713f7c7-8173-4752-b4c3-a2b70f6e0fca?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c0f151ee-9d7a-447f-a764-197da0674c22","name":"c0f151ee-9d7a-447f-a764-197da0674c22","status":"Succeeded","startTime":"2019-07-03T08:55:53.5538799Z","endTime":"2019-07-03T08:55:53.8038779Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/6713f7c7-8173-4752-b4c3-a2b70f6e0fca","name":"6713f7c7-8173-4752-b4c3-a2b70f6e0fca","status":"Succeeded","startTime":"2019-09-30T08:12:49.4037877Z","endTime":"2019-09-30T08:12:49.5287928Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:56:24 GMT + - Mon, 30 Sep 2019 08:13:20 GMT expires: - '-1' pragma: @@ -481,26 +481,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:56:35 GMT + - Mon, 30 Sep 2019 08:13:30 GMT expires: - '-1' pragma: @@ -526,30 +525,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/21c0ffb1-4f07-4563-9b1c-b3438ccb8475?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f8cd701e-d81a-44ee-8323-fb5b01fc2c01?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 08:56:36 GMT + - Mon, 30 Sep 2019 08:13:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/21c0ffb1-4f07-4563-9b1c-b3438ccb8475?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f8cd701e-d81a-44ee-8323-fb5b01fc2c01?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -561,7 +560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -577,24 +576,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/21c0ffb1-4f07-4563-9b1c-b3438ccb8475?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f8cd701e-d81a-44ee-8323-fb5b01fc2c01?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/21c0ffb1-4f07-4563-9b1c-b3438ccb8475","name":"21c0ffb1-4f07-4563-9b1c-b3438ccb8475","status":"Succeeded","startTime":"2019-07-03T08:56:37.5317872Z","endTime":"2019-07-03T08:56:37.7036528Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f8cd701e-d81a-44ee-8323-fb5b01fc2c01","name":"f8cd701e-d81a-44ee-8323-fb5b01fc2c01","status":"Succeeded","startTime":"2019-09-30T08:13:31.5585054Z","endTime":"2019-09-30T08:13:31.6367196Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:57:08 GMT + - Mon, 30 Sep 2019 08:14:02 GMT expires: - '-1' pragma: @@ -626,26 +625,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:57:11 GMT + - Mon, 30 Sep 2019 08:14:04 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 5ae9cdc2627a..f052b5d20a2c 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T08%3A57%3A15.8289265Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A14%3A09.71905Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/b68cda42-a60e-40fc-a7e2-eabfd893ae65?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/23f5d96b-ba88-4725-baa8-6cf103d954bc?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '380' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:57:16 GMT + - Mon, 30 Sep 2019 08:14:10 GMT etag: - - W/"datetime'2019-07-03T08%3A57%3A15.8289265Z'" + - W/"datetime'2019-09-30T08%3A14%3A09.71905Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b68cda42-a60e-40fc-a7e2-eabfd893ae65?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/23f5d96b-ba88-4725-baa8-6cf103d954bc?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b68cda42-a60e-40fc-a7e2-eabfd893ae65","name":"b68cda42-a60e-40fc-a7e2-eabfd893ae65","status":"Succeeded","startTime":"2019-07-03T08:57:15.6850612Z","endTime":"2019-07-03T08:57:16.0288149Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/23f5d96b-ba88-4725-baa8-6cf103d954bc","name":"23f5d96b-ba88-4725-baa8-6cf103d954bc","status":"Succeeded","startTime":"2019-09-30T08:14:09.6634327Z","endTime":"2019-09-30T08:14:09.7718076Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:57:47 GMT + - Mon, 30 Sep 2019 08:14:41 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T08%3A57%3A16.011055Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A14%3A09.778094Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '385' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:57:48 GMT + - Mon, 30 Sep 2019 08:14:41 GMT etag: - - W/"datetime'2019-07-03T08%3A57%3A16.011055Z'" + - W/"datetime'2019-09-30T08%3A14%3A09.778094Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A57%3A51.5160901Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A14%3A43.0574005Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/103a4cb4-0be6-4563-989b-e998eb1a843e?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/72315062-e7d8-457c-9871-9819766937ec?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:57:51 GMT + - Mon, 30 Sep 2019 08:14:43 GMT etag: - - W/"datetime'2019-07-03T08%3A57%3A51.5160901Z'" + - W/"datetime'2019-09-30T08%3A14%3A43.0574005Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/103a4cb4-0be6-4563-989b-e998eb1a843e?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/72315062-e7d8-457c-9871-9819766937ec?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/103a4cb4-0be6-4563-989b-e998eb1a843e","name":"103a4cb4-0be6-4563-989b-e998eb1a843e","status":"Succeeded","startTime":"2019-07-03T08:57:51.3752138Z","endTime":"2019-07-03T08:57:51.9846338Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/72315062-e7d8-457c-9871-9819766937ec","name":"72315062-e7d8-457c-9871-9819766937ec","status":"Succeeded","startTime":"2019-09-30T08:14:42.9250257Z","endTime":"2019-09-30T08:14:43.405852Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:58:22 GMT + - Mon, 30 Sep 2019 08:15:15 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A57%3A51.9734135Z''\"","location":"westcentralus","properties":{"poolId":"22e75a5d-f1f7-b6f9-397b-72b0679dd910","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A14%3A43.3976469Z''\"","location":"westcentralus","properties":{"poolId":"3f250b02-23c7-9f96-22cc-15a837412290","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:58:23 GMT + - Mon, 30 Sep 2019 08:15:15 GMT etag: - - W/"datetime'2019-07-03T08%3A57%3A51.9734135Z'" + - W/"datetime'2019-09-30T08%3A14%3A43.3976469Z'" expires: - '-1' pragma: @@ -317,8 +317,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -331,32 +331,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A58%3A27.2753054Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A15%3A16.7510062Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/fca9cee4-19d9-4f43-909c-8d0c5396e1dc?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e089602e-3d4a-4ba5-9ac5-7613385755be?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:58:27 GMT + - Mon, 30 Sep 2019 08:15:16 GMT etag: - - W/"datetime'2019-07-03T08%3A58%3A27.2753054Z'" + - W/"datetime'2019-09-30T08%3A15%3A16.7510062Z'" expires: - '-1' pragma: @@ -370,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -386,24 +386,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fca9cee4-19d9-4f43-909c-8d0c5396e1dc?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e089602e-3d4a-4ba5-9ac5-7613385755be?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fca9cee4-19d9-4f43-909c-8d0c5396e1dc","name":"fca9cee4-19d9-4f43-909c-8d0c5396e1dc","status":"Succeeded","startTime":"2019-07-03T08:58:27.098979Z","endTime":"2019-07-03T08:58:27.6771067Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/e089602e-3d4a-4ba5-9ac5-7613385755be","name":"e089602e-3d4a-4ba5-9ac5-7613385755be","status":"Succeeded","startTime":"2019-09-30T08:15:16.6864474Z","endTime":"2019-09-30T08:15:17.1548971Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '554' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:58:58 GMT + - Mon, 30 Sep 2019 08:15:47 GMT expires: - '-1' pragma: @@ -435,26 +435,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A58%3A27.6785898Z''\"","location":"westcentralus","properties":{"poolId":"d954bd25-1320-0919-4ef3-2eac3650ee1d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A15%3A17.1492971Z''\"","location":"westcentralus","properties":{"poolId":"fd16ff49-d95d-d3f1-3bb5-dbddb4a31df2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:58:59 GMT + - Mon, 30 Sep 2019 08:15:48 GMT etag: - - W/"datetime'2019-07-03T08%3A58%3A27.6785898Z'" + - W/"datetime'2019-09-30T08%3A15%3A17.1492971Z'" expires: - '-1' pragma: @@ -486,26 +486,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A57%3A51.9734135Z''\"","location":"westcentralus","properties":{"poolId":"22e75a5d-f1f7-b6f9-397b-72b0679dd910","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T08%3A58%3A27.6785898Z''\"","location":"westcentralus","properties":{"poolId":"d954bd25-1320-0919-4ef3-2eac3650ee1d","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A14%3A43.3976469Z''\"","location":"westcentralus","properties":{"poolId":"3f250b02-23c7-9f96-22cc-15a837412290","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A15%3A17.1492971Z''\"","location":"westcentralus","properties":{"poolId":"fd16ff49-d95d-d3f1-3bb5-dbddb4a31df2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1149' + - '1141' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:59:01 GMT + - Mon, 30 Sep 2019 08:15:49 GMT expires: - '-1' pragma: @@ -539,30 +539,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/9ebbae92-0094-468e-a37a-084342743768?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a4bd2df4-4410-4358-a4f9-d16a6e1ee664?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 08:59:02 GMT + - Mon, 30 Sep 2019 08:15:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9ebbae92-0094-468e-a37a-084342743768?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a4bd2df4-4410-4358-a4f9-d16a6e1ee664?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -590,24 +590,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9ebbae92-0094-468e-a37a-084342743768?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a4bd2df4-4410-4358-a4f9-d16a6e1ee664?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9ebbae92-0094-468e-a37a-084342743768","name":"9ebbae92-0094-468e-a37a-084342743768","status":"Succeeded","startTime":"2019-07-03T08:59:02.9919957Z","endTime":"2019-07-03T08:59:03.288859Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/a4bd2df4-4410-4358-a4f9-d16a6e1ee664","name":"a4bd2df4-4410-4358-a4f9-d16a6e1ee664","status":"Succeeded","startTime":"2019-09-30T08:15:50.6061213Z","endTime":"2019-09-30T08:15:50.7221087Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '554' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 08:59:35 GMT + - Mon, 30 Sep 2019 08:16:22 GMT expires: - '-1' pragma: @@ -641,30 +641,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/38a267a4-f1d1-4980-8a73-c09185319660?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3a50aa42-d368-48a0-89dd-85eeb97d178d?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 08:59:38 GMT + - Mon, 30 Sep 2019 08:16:22 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/38a267a4-f1d1-4980-8a73-c09185319660?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3a50aa42-d368-48a0-89dd-85eeb97d178d?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -692,24 +692,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/38a267a4-f1d1-4980-8a73-c09185319660?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3a50aa42-d368-48a0-89dd-85eeb97d178d?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/38a267a4-f1d1-4980-8a73-c09185319660","name":"38a267a4-f1d1-4980-8a73-c09185319660","status":"Succeeded","startTime":"2019-07-03T08:59:38.1596386Z","endTime":"2019-07-03T08:59:38.378387Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/3a50aa42-d368-48a0-89dd-85eeb97d178d","name":"3a50aa42-d368-48a0-89dd-85eeb97d178d","status":"Succeeded","startTime":"2019-09-30T08:16:23.0064096Z","endTime":"2019-09-30T08:16:23.1313972Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '554' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:00:08 GMT + - Mon, 30 Sep 2019 08:16:54 GMT expires: - '-1' pragma: @@ -741,26 +741,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:00:19 GMT + - Mon, 30 Sep 2019 08:17:03 GMT expires: - '-1' pragma: @@ -784,26 +783,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:00:30 GMT + - Mon, 30 Sep 2019 08:17:14 GMT expires: - '-1' pragma: @@ -829,30 +827,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/45794d26-1d26-481e-b812-e84dcdf905fd?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9cbeecf6-0f30-4f37-ac55-28388608d83a?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 09:00:32 GMT + - Mon, 30 Sep 2019 08:17:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/45794d26-1d26-481e-b812-e84dcdf905fd?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9cbeecf6-0f30-4f37-ac55-28388608d83a?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -864,7 +862,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -880,24 +878,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/45794d26-1d26-481e-b812-e84dcdf905fd?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9cbeecf6-0f30-4f37-ac55-28388608d83a?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/45794d26-1d26-481e-b812-e84dcdf905fd","name":"45794d26-1d26-481e-b812-e84dcdf905fd","status":"Succeeded","startTime":"2019-07-03T09:00:32.616829Z","endTime":"2019-07-03T09:00:32.8043024Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9cbeecf6-0f30-4f37-ac55-28388608d83a","name":"9cbeecf6-0f30-4f37-ac55-28388608d83a","status":"Succeeded","startTime":"2019-09-30T08:17:15.9483521Z","endTime":"2019-09-30T08:17:16.0265527Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '520' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:01:03 GMT + - Mon, 30 Sep 2019 08:17:46 GMT expires: - '-1' pragma: @@ -929,26 +927,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:01:06 GMT + - Mon, 30 Sep 2019 08:17:49 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 9ce72a88e048..2ba971881614 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T09%3A01%3A11.2141721Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A17%3A54.3827583Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/7a188b2b-76c8-4468-ba87-4e22338f7405?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dc37f2df-b8ab-47df-8daa-90ead3df2b9e?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:01:11 GMT + - Mon, 30 Sep 2019 08:17:55 GMT etag: - - W/"datetime'2019-07-03T09%3A01%3A11.2141721Z'" + - W/"datetime'2019-09-30T08%3A17%3A54.3827583Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7a188b2b-76c8-4468-ba87-4e22338f7405?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dc37f2df-b8ab-47df-8daa-90ead3df2b9e?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7a188b2b-76c8-4468-ba87-4e22338f7405","name":"7a188b2b-76c8-4468-ba87-4e22338f7405","status":"Succeeded","startTime":"2019-07-03T09:01:11.0796991Z","endTime":"2019-07-03T09:01:11.3453258Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dc37f2df-b8ab-47df-8daa-90ead3df2b9e","name":"dc37f2df-b8ab-47df-8daa-90ead3df2b9e","status":"Succeeded","startTime":"2019-09-30T08:17:54.2928986Z","endTime":"2019-09-30T08:17:54.4335035Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:01:42 GMT + - Mon, 30 Sep 2019 08:18:26 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T09%3A01%3A11.3452657Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A17%3A54.434796Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '381' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:01:43 GMT + - Mon, 30 Sep 2019 08:18:26 GMT etag: - - W/"datetime'2019-07-03T09%3A01%3A11.3452657Z'" + - W/"datetime'2019-09-30T08%3A17%3A54.434796Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T09%3A01%3A46.8894602Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A18%3A28.0317132Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/a8759d50-7b4a-4ce0-abfe-5ccd8bdef4d2?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e284a6a8-a269-4613-8c03-6bd5968413f5?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:01:46 GMT + - Mon, 30 Sep 2019 08:18:28 GMT etag: - - W/"datetime'2019-07-03T09%3A01%3A46.8894602Z'" + - W/"datetime'2019-09-30T08%3A18%3A28.0317132Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a8759d50-7b4a-4ce0-abfe-5ccd8bdef4d2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e284a6a8-a269-4613-8c03-6bd5968413f5?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a8759d50-7b4a-4ce0-abfe-5ccd8bdef4d2","name":"a8759d50-7b4a-4ce0-abfe-5ccd8bdef4d2","status":"Succeeded","startTime":"2019-07-03T09:01:46.7553723Z","endTime":"2019-07-03T09:01:47.2939368Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/e284a6a8-a269-4613-8c03-6bd5968413f5","name":"e284a6a8-a269-4613-8c03-6bd5968413f5","status":"Succeeded","startTime":"2019-09-30T08:18:27.9715304Z","endTime":"2019-09-30T08:18:28.3786848Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:02:17 GMT + - Mon, 30 Sep 2019 08:18:59 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T09%3A01%3A47.2717301Z''\"","location":"westcentralus","properties":{"poolId":"32fc5b6d-2ea1-5ca3-c6da-f40b1d41ff73","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A18%3A28.3819654Z''\"","location":"westcentralus","properties":{"poolId":"870fd8ad-d1a0-1044-6997-2624b382209f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:02:18 GMT + - Mon, 30 Sep 2019 08:18:59 GMT etag: - - W/"datetime'2019-07-03T09%3A01%3A47.2717301Z'" + - W/"datetime'2019-09-30T08%3A18%3A28.3819654Z'" expires: - '-1' pragma: @@ -317,8 +317,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"serviceLevel": "Standard", "size": 4398046511104}, - "tags": {"Tag2": "Value1"}}' + body: '{"tags": {"Tag2": "Value1"}, "properties": {"size": 4398046511104, "serviceLevel": + "Standard"}}' headers: Accept: - application/json @@ -331,28 +331,28 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T09%3A02%3A21.1136187Z''\"","location":"westcentralus","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"32fc5b6d-2ea1-5ca3-c6da-f40b1d41ff73","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A19%3A01.0794261Z''\"","location":"westcentralus","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"870fd8ad-d1a0-1044-6997-2624b382209f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '594' + - '590' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:02:22 GMT + - Mon, 30 Sep 2019 08:19:01 GMT etag: - - W/"datetime'2019-07-03T09%3A02%3A21.1136187Z'" + - W/"datetime'2019-09-30T08%3A19%3A01.0794261Z'" expires: - '-1' pragma: @@ -370,7 +370,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -388,30 +388,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/3dcb4390-baa8-4502-b49c-dae6c08c058e?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e6488f77-6ed4-43cf-b587-c7a64576336d?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 09:02:23 GMT + - Mon, 30 Sep 2019 08:19:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3dcb4390-baa8-4502-b49c-dae6c08c058e?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e6488f77-6ed4-43cf-b587-c7a64576336d?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -439,24 +439,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3dcb4390-baa8-4502-b49c-dae6c08c058e?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e6488f77-6ed4-43cf-b587-c7a64576336d?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3dcb4390-baa8-4502-b49c-dae6c08c058e","name":"3dcb4390-baa8-4502-b49c-dae6c08c058e","status":"Succeeded","startTime":"2019-07-03T09:02:24.3322597Z","endTime":"2019-07-03T09:02:24.58226Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/e6488f77-6ed4-43cf-b587-c7a64576336d","name":"e6488f77-6ed4-43cf-b587-c7a64576336d","status":"Succeeded","startTime":"2019-09-30T08:19:03.3207551Z","endTime":"2019-09-30T08:19:03.5082657Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '553' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:02:54 GMT + - Mon, 30 Sep 2019 08:19:34 GMT expires: - '-1' pragma: @@ -488,26 +488,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:03:05 GMT + - Mon, 30 Sep 2019 08:19:44 GMT expires: - '-1' pragma: @@ -533,30 +532,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/b9d6707b-9d26-495c-b66c-f836cc639a49?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b3fd62a9-163a-4966-902e-f71368749de9?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 09:03:07 GMT + - Mon, 30 Sep 2019 08:19:45 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b9d6707b-9d26-495c-b66c-f836cc639a49?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b3fd62a9-163a-4966-902e-f71368749de9?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -568,7 +567,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -584,24 +583,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b9d6707b-9d26-495c-b66c-f836cc639a49?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b3fd62a9-163a-4966-902e-f71368749de9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b9d6707b-9d26-495c-b66c-f836cc639a49","name":"b9d6707b-9d26-495c-b66c-f836cc639a49","status":"Succeeded","startTime":"2019-07-03T09:03:07.8782603Z","endTime":"2019-07-03T09:03:08.0814111Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b3fd62a9-163a-4966-902e-f71368749de9","name":"b3fd62a9-163a-4966-902e-f71368749de9","status":"Succeeded","startTime":"2019-09-30T08:19:45.6743468Z","endTime":"2019-09-30T08:19:45.7369203Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:03:39 GMT + - Mon, 30 Sep 2019 08:20:16 GMT expires: - '-1' pragma: @@ -633,26 +632,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:03:40 GMT + - Mon, 30 Sep 2019 08:20:18 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 336919a17509..491fee9e6ed2 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T09%3A03%3A46.6699469Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A20%3A23.4265119Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/47a67fef-7064-4af6-a583-582807e1a5ba?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/15bcdda8-4571-4e62-95c0-b675537e6987?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:03:47 GMT + - Mon, 30 Sep 2019 08:20:23 GMT etag: - - W/"datetime'2019-07-03T09%3A03%3A46.6699469Z'" + - W/"datetime'2019-09-30T08%3A20%3A23.4265119Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/47a67fef-7064-4af6-a583-582807e1a5ba?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/15bcdda8-4571-4e62-95c0-b675537e6987?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/47a67fef-7064-4af6-a583-582807e1a5ba","name":"47a67fef-7064-4af6-a583-582807e1a5ba","status":"Succeeded","startTime":"2019-07-03T09:03:46.4689191Z","endTime":"2019-07-03T09:03:46.797048Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/15bcdda8-4571-4e62-95c0-b675537e6987","name":"15bcdda8-4571-4e62-95c0-b675537e6987","status":"Succeeded","startTime":"2019-09-30T08:20:23.3748881Z","endTime":"2019-09-30T08:20:23.4826671Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '520' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:04:17 GMT + - Mon, 30 Sep 2019 08:20:54 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T09%3A03%3A46.7970369Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-30T08%3A20%3A23.4765478Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:04:18 GMT + - Mon, 30 Sep 2019 08:20:55 GMT etag: - - W/"datetime'2019-07-03T09%3A03%3A46.7970369Z'" + - W/"datetime'2019-09-30T08%3A20%3A23.4765478Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T09%3A04%3A22.443172Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A20%3A56.8354835Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/3a35dc74-034e-4ddf-933e-b1b526227aad?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e4252e4-9d40-4b59-a275-1abd1bac4920?api-version=2019-07-01 cache-control: - no-cache content-length: - - '470' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:04:23 GMT + - Mon, 30 Sep 2019 08:20:56 GMT etag: - - W/"datetime'2019-07-03T09%3A04%3A22.443172Z'" + - W/"datetime'2019-09-30T08%3A20%3A56.8354835Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3a35dc74-034e-4ddf-933e-b1b526227aad?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0e4252e4-9d40-4b59-a275-1abd1bac4920?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3a35dc74-034e-4ddf-933e-b1b526227aad","name":"3a35dc74-034e-4ddf-933e-b1b526227aad","status":"Succeeded","startTime":"2019-07-03T09:04:22.2985858Z","endTime":"2019-07-03T09:04:22.8767171Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/0e4252e4-9d40-4b59-a275-1abd1bac4920","name":"0e4252e4-9d40-4b59-a275-1abd1bac4920","status":"Succeeded","startTime":"2019-09-30T08:20:56.7376604Z","endTime":"2019-09-30T08:20:57.2532919Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:04:54 GMT + - Mon, 30 Sep 2019 08:21:28 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T09%3A04%3A22.8744757Z''\"","location":"westcentralus","properties":{"poolId":"6fb48ea8-d58c-73d9-2e4a-58fa80bb6d99","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A20%3A57.2057492Z''\"","location":"westcentralus","properties":{"poolId":"aa39613f-4933-7824-d0e8-1637d140caf0","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:04:55 GMT + - Mon, 30 Sep 2019 08:21:28 GMT etag: - - W/"datetime'2019-07-03T09%3A04%3A22.8744757Z'" + - W/"datetime'2019-09-30T08%3A20%3A57.2057492Z'" expires: - '-1' pragma: @@ -317,8 +317,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Standard", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Standard"}}' headers: Accept: - application/json @@ -331,30 +331,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T09%3A04%3A57.0185521Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","poolId":"6fb48ea8-d58c-73d9-2e4a-58fa80bb6d99","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A21%3A29.5670856Z''\"","location":"westcentralus","properties":{"provisioningState":"Updating","poolId":"aa39613f-4933-7824-d0e8-1637d140caf0","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104}}' 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/365732ab-23d4-48af-b378-4d7feb2ea8bb?api-version=2019-07-01 cache-control: - no-cache content-length: - - '569' + - '563' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:04:56 GMT + - Mon, 30 Sep 2019 08:21:28 GMT etag: - - W/"datetime'2019-07-03T09%3A04%3A57.0185521Z'" + - W/"datetime'2019-09-30T08%3A21%3A29.5670856Z'" expires: - '-1' pragma: @@ -372,7 +374,107 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' + 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/365732ab-23d4-48af-b378-4d7feb2ea8bb?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/365732ab-23d4-48af-b378-4d7feb2ea8bb","name":"365732ab-23d4-48af-b378-4d7feb2ea8bb","status":"Succeeded","startTime":"2019-09-30T08:21:29.5147332Z","endTime":"2019-09-30T08:21:29.7021988Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: + - '551' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 30 Sep 2019 08:21: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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-30T08%3A21%3A29.6981809Z''\"","location":"westcentralus","properties":{"poolId":"aa39613f-4933-7824-d0e8-1637d140caf0","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Succeeded"}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '565' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 30 Sep 2019 08:21:59 GMT + etag: + - W/"datetime'2019-09-30T08%3A21%3A29.6981809Z'" + 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: @@ -390,30 +492,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/503dc970-9edd-4284-9e5f-971debb8d955?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4e087135-8a13-4580-b226-73046a511ae9?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 09:04:58 GMT + - Mon, 30 Sep 2019 08:22:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/503dc970-9edd-4284-9e5f-971debb8d955?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4e087135-8a13-4580-b226-73046a511ae9?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -441,24 +543,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/503dc970-9edd-4284-9e5f-971debb8d955?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4e087135-8a13-4580-b226-73046a511ae9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/503dc970-9edd-4284-9e5f-971debb8d955","name":"503dc970-9edd-4284-9e5f-971debb8d955","status":"Succeeded","startTime":"2019-07-03T09:04:59.1544631Z","endTime":"2019-07-03T09:04:59.3732167Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/4e087135-8a13-4580-b226-73046a511ae9","name":"4e087135-8a13-4580-b226-73046a511ae9","status":"Succeeded","startTime":"2019-09-30T08:22:02.2771213Z","endTime":"2019-09-30T08:22:02.5583774Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:05:30 GMT + - Mon, 30 Sep 2019 08:22:33 GMT expires: - '-1' pragma: @@ -490,26 +592,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:05:40 GMT + - Mon, 30 Sep 2019 08:22:43 GMT expires: - '-1' pragma: @@ -535,30 +636,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/530276cc-e489-427b-98be-b74dc8f89d28?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fa216c00-1fac-4bfe-a80c-d1fac513973b?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 09:05:42 GMT + - Mon, 30 Sep 2019 08:22:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/530276cc-e489-427b-98be-b74dc8f89d28?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fa216c00-1fac-4bfe-a80c-d1fac513973b?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -586,24 +687,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/530276cc-e489-427b-98be-b74dc8f89d28?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fa216c00-1fac-4bfe-a80c-d1fac513973b?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/530276cc-e489-427b-98be-b74dc8f89d28","name":"530276cc-e489-427b-98be-b74dc8f89d28","status":"Succeeded","startTime":"2019-07-03T09:05:43.035357Z","endTime":"2019-07-03T09:05:43.254111Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fa216c00-1fac-4bfe-a80c-d1fac513973b","name":"fa216c00-1fac-4bfe-a80c-d1fac513973b","status":"Succeeded","startTime":"2019-09-30T08:22:44.5638807Z","endTime":"2019-09-30T08:22:44.7045069Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '519' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:06:13 GMT + - Mon, 30 Sep 2019 08:23:15 GMT expires: - '-1' pragma: @@ -635,26 +736,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 09:06:16 GMT + - Mon, 30 Sep 2019 08:23:17 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 1a04d32ac250..2da40305d3fd 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A19%3A49.0303558Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T13%3A15%3A11.6831838Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/e3b2f12d-3c79-45ad-b911-e546af616dce?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9407252d-6e1a-49c1-8ead-4887563e58e9?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:19:49 GMT + - Fri, 27 Sep 2019 13:15:12 GMT etag: - - W/"datetime'2019-07-02T23%3A19%3A49.0303558Z'" + - W/"datetime'2019-09-27T13%3A15%3A11.6831838Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e3b2f12d-3c79-45ad-b911-e546af616dce?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9407252d-6e1a-49c1-8ead-4887563e58e9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e3b2f12d-3c79-45ad-b911-e546af616dce","name":"e3b2f12d-3c79-45ad-b911-e546af616dce","status":"Succeeded","startTime":"2019-07-02T23:19:48.8944101Z","endTime":"2019-07-02T23:19:49.1600417Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9407252d-6e1a-49c1-8ead-4887563e58e9","name":"9407252d-6e1a-49c1-8ead-4887563e58e9","status":"Succeeded","startTime":"2019-09-27T13:15:11.6347758Z","endTime":"2019-09-27T13:15:11.7910188Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:20:20 GMT + - Fri, 27 Sep 2019 13:15:43 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A19%3A49.160448Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T13%3A15%3A11.7842555Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '385' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:20:21 GMT + - Fri, 27 Sep 2019 13:15:43 GMT etag: - - W/"datetime'2019-07-02T23%3A19%3A49.160448Z'" + - W/"datetime'2019-09-27T13%3A15%3A11.7842555Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A20%3A24.0461623Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A15%3A45.3053367Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/def0df42-3b00-46fc-9b27-ddf3b0a9ff7f?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7b2e3490-48fc-4ce3-aaa6-018342b84452?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:20:24 GMT + - Fri, 27 Sep 2019 13:15:45 GMT etag: - - W/"datetime'2019-07-02T23%3A20%3A24.0461623Z'" + - W/"datetime'2019-09-27T13%3A15%3A45.3053367Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/def0df42-3b00-46fc-9b27-ddf3b0a9ff7f?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7b2e3490-48fc-4ce3-aaa6-018342b84452?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/def0df42-3b00-46fc-9b27-ddf3b0a9ff7f","name":"def0df42-3b00-46fc-9b27-ddf3b0a9ff7f","status":"Succeeded","startTime":"2019-07-02T23:20:23.907965Z","endTime":"2019-07-02T23:20:24.4860686Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/7b2e3490-48fc-4ce3-aaa6-018342b84452","name":"7b2e3490-48fc-4ce3-aaa6-018342b84452","status":"Succeeded","startTime":"2019-09-27T13:15:45.2025533Z","endTime":"2019-09-27T13:15:45.6557074Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '554' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:20:55 GMT + - Fri, 27 Sep 2019 13:16:15 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A20%3A24.4784693Z''\"","location":"westcentralus","properties":{"poolId":"4db53bce-61e4-73bb-df92-9336436c9349","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A15%3A45.6555875Z''\"","location":"westcentralus","properties":{"poolId":"f31a43ee-d22b-2363-a3ba-9686ca6c520f","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:20:56 GMT + - Fri, 27 Sep 2019 13:16:16 GMT etag: - - W/"datetime'2019-07-02T23%3A20%3A24.4784693Z'" + - W/"datetime'2019-09-27T13%3A15%3A45.6555875Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A21%3A00.0786028Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A16%3A18.9414997Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd01c23b-94a7-4f78-81bb-8cf7812fe868?api-version=2019-07-01 cache-control: - no-cache content-length: - - '758' + - '746' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:21:00 GMT + - Fri, 27 Sep 2019 13:16:18 GMT etag: - - W/"datetime'2019-07-02T23%3A21%3A00.0786028Z'" + - W/"datetime'2019-09-27T13%3A16%3A18.9414997Z'" expires: - '-1' pragma: @@ -370,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -386,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd01c23b-94a7-4f78-81bb-8cf7812fe868?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee","name":"62d07073-aadc-4ca5-952c-ca135b59c8ee","status":"Creating","startTime":"2019-07-02T23:20:59.9508008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/dd01c23b-94a7-4f78-81bb-8cf7812fe868","name":"dd01c23b-94a7-4f78-81bb-8cf7812fe868","status":"Creating","startTime":"2019-09-27T13:16:18.8759823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:21:31 GMT + - Fri, 27 Sep 2019 13:16:50 GMT expires: - '-1' pragma: @@ -435,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd01c23b-94a7-4f78-81bb-8cf7812fe868?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee","name":"62d07073-aadc-4ca5-952c-ca135b59c8ee","status":"Creating","startTime":"2019-07-02T23:20:59.9508008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/dd01c23b-94a7-4f78-81bb-8cf7812fe868","name":"dd01c23b-94a7-4f78-81bb-8cf7812fe868","status":"Creating","startTime":"2019-09-27T13:16:18.8759823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:22:03 GMT + - Fri, 27 Sep 2019 13:17:20 GMT expires: - '-1' pragma: @@ -484,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd01c23b-94a7-4f78-81bb-8cf7812fe868?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee","name":"62d07073-aadc-4ca5-952c-ca135b59c8ee","status":"Creating","startTime":"2019-07-02T23:20:59.9508008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/dd01c23b-94a7-4f78-81bb-8cf7812fe868","name":"dd01c23b-94a7-4f78-81bb-8cf7812fe868","status":"Creating","startTime":"2019-09-27T13:16:18.8759823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:22:34 GMT + - Fri, 27 Sep 2019 13:17:51 GMT expires: - '-1' pragma: @@ -533,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd01c23b-94a7-4f78-81bb-8cf7812fe868?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee","name":"62d07073-aadc-4ca5-952c-ca135b59c8ee","status":"Creating","startTime":"2019-07-02T23:20:59.9508008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/dd01c23b-94a7-4f78-81bb-8cf7812fe868","name":"dd01c23b-94a7-4f78-81bb-8cf7812fe868","status":"Creating","startTime":"2019-09-27T13:16:18.8759823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:23:04 GMT + - Fri, 27 Sep 2019 13:18:22 GMT expires: - '-1' pragma: @@ -582,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd01c23b-94a7-4f78-81bb-8cf7812fe868?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee","name":"62d07073-aadc-4ca5-952c-ca135b59c8ee","status":"Creating","startTime":"2019-07-02T23:20:59.9508008Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/dd01c23b-94a7-4f78-81bb-8cf7812fe868","name":"dd01c23b-94a7-4f78-81bb-8cf7812fe868","status":"Creating","startTime":"2019-09-27T13:16:18.8759823Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:23:35 GMT + - Fri, 27 Sep 2019 13:18:52 GMT expires: - '-1' pragma: @@ -631,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dd01c23b-94a7-4f78-81bb-8cf7812fe868?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62d07073-aadc-4ca5-952c-ca135b59c8ee","name":"62d07073-aadc-4ca5-952c-ca135b59c8ee","status":"Succeeded","startTime":"2019-07-02T23:20:59.9508008Z","endTime":"2019-07-02T23:23:53.1507585Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/dd01c23b-94a7-4f78-81bb-8cf7812fe868","name":"dd01c23b-94a7-4f78-81bb-8cf7812fe868","status":"Succeeded","startTime":"2019-09-27T13:16:18.8759823Z","endTime":"2019-09-27T13:19:05.6948186Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:24:07 GMT + - Fri, 27 Sep 2019 13:19:23 GMT expires: - '-1' pragma: @@ -680,26 +679,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A23%3A53.1424572Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"bacf3276-936f-73a7-4b6c-06e24d29e2da","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_bac0dd37","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2dbfe16b-2718-3fcc-73e3-41a5c1e3a701","fileSystemId":"bacf3276-936f-73a7-4b6c-06e24d29e2da","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A19%3A05.7002948Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"fd02e1be-f47d-b479-956e-78bd95f4c247","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":294912,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_9ba8b043","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2bc6dd78-8735-7ed2-3810-c57a7d0559f8","fileSystemId":"fd02e1be-f47d-b479-956e-78bd95f4c247","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1411' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:24:08 GMT + - Fri, 27 Sep 2019 13:19:23 GMT etag: - - W/"datetime'2019-07-02T23%3A23%3A53.1424572Z'" + - W/"datetime'2019-09-27T13%3A19%3A05.7002948Z'" expires: - '-1' pragma: @@ -731,28 +730,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A23%3A53.1424572Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"bacf3276-936f-73a7-4b6c-06e24d29e2da","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_bac0dd37","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2dbfe16b-2718-3fcc-73e3-41a5c1e3a701","fileSystemId":"bacf3276-936f-73a7-4b6c-06e24d29e2da","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A19%3A05.7002948Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"fd02e1be-f47d-b479-956e-78bd95f4c247","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":294912,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_9ba8b043","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2bc6dd78-8735-7ed2-3810-c57a7d0559f8","fileSystemId":"fd02e1be-f47d-b479-956e-78bd95f4c247","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1411' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:24:09 GMT + - Fri, 27 Sep 2019 13:19:25 GMT etag: - - W/"datetime'2019-07-02T23%3A23%3A53.1424572Z'" + - W/"datetime'2019-09-27T13%3A19%3A05.7002948Z'" expires: - '-1' pragma: @@ -775,8 +774,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"fileSystemId": "bacf3276-936f-73a7-4b6c-06e24d29e2da"}, - "location": "westcentralus"}' + body: '{"location": "westcentralus", "properties": {"fileSystemId": "fd02e1be-f47d-b479-956e-78bd95f4c247"}}' headers: Accept: - application/json @@ -789,32 +787,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"bacf3276-936f-73a7-4b6c-06e24d29e2da","name":"sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"fd02e1be-f47d-b479-956e-78bd95f4c247","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/westcentralus/operationResults/5ba1d15f-da78-46c4-a45b-1fe8fd0460d7?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8e4a6294-a8c4-411b-a138-bbaf07a88869?api-version=2019-07-01 cache-control: - no-cache content-length: - - '576' + - '572' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:24:13 GMT + - Fri, 27 Sep 2019 13:19:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ba1d15f-da78-46c4-a45b-1fe8fd0460d7?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8e4a6294-a8c4-411b-a138-bbaf07a88869?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -826,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -842,24 +840,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ba1d15f-da78-46c4-a45b-1fe8fd0460d7?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8e4a6294-a8c4-411b-a138-bbaf07a88869?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ba1d15f-da78-46c4-a45b-1fe8fd0460d7","name":"5ba1d15f-da78-46c4-a45b-1fe8fd0460d7","status":"Succeeded","startTime":"2019-07-02T23:24:13.2502105Z","endTime":"2019-07-02T23:24:16.9291357Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/8e4a6294-a8c4-411b-a138-bbaf07a88869","name":"8e4a6294-a8c4-411b-a138-bbaf07a88869","status":"Succeeded","startTime":"2019-09-27T13:19:29.8001247Z","endTime":"2019-09-27T13:19:31.6019307Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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 cache-control: - no-cache content-length: - - '616' + - '612' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:24:45 GMT + - Fri, 27 Sep 2019 13:20:00 GMT expires: - '-1' pragma: @@ -891,24 +889,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"223b3ad5-2697-6408-1f9b-5ee608895280","fileSystemId":"bacf3276-936f-73a7-4b6c-06e24d29e2da","name":"sdk-py-tests-snapshot-1","created":"2019-07-02T23:24:13Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"ba6907c9-f801-ee21-7f02-6e915ccef161","fileSystemId":"fd02e1be-f47d-b479-956e-78bd95f4c247","name":"sdk-py-tests-snapshot-1","created":"2019-09-27T13:19:29Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '662' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:24:45 GMT + - Fri, 27 Sep 2019 13:20:01 GMT expires: - '-1' pragma: @@ -940,26 +938,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"223b3ad5-2697-6408-1f9b-5ee608895280","fileSystemId":"bacf3276-936f-73a7-4b6c-06e24d29e2da","name":"sdk-py-tests-snapshot-1","created":"2019-07-02T23:24:13Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"ba6907c9-f801-ee21-7f02-6e915ccef161","fileSystemId":"fd02e1be-f47d-b479-956e-78bd95f4c247","name":"sdk-py-tests-snapshot-1","created":"2019-09-27T13:19:29Z"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '674' + - '670' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:24:47 GMT + - Fri, 27 Sep 2019 13:20:02 GMT expires: - '-1' pragma: @@ -993,30 +991,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '' + 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/be1a73e2-7cb9-4f08-bcee-a5def55f197b?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e5e20023-5aa8-47e1-a90d-3fc1ad60e02a?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:24:48 GMT + - Fri, 27 Sep 2019 13:20:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be1a73e2-7cb9-4f08-bcee-a5def55f197b?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e5e20023-5aa8-47e1-a90d-3fc1ad60e02a?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1044,24 +1042,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be1a73e2-7cb9-4f08-bcee-a5def55f197b?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e5e20023-5aa8-47e1-a90d-3fc1ad60e02a?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/be1a73e2-7cb9-4f08-bcee-a5def55f197b","name":"be1a73e2-7cb9-4f08-bcee-a5def55f197b","status":"Succeeded","startTime":"2019-07-02T23:24:49.3116961Z","endTime":"2019-07-02T23:24:52.7259163Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/e5e20023-5aa8-47e1-a90d-3fc1ad60e02a","name":"e5e20023-5aa8-47e1-a90d-3fc1ad60e02a","status":"Succeeded","startTime":"2019-09-27T13:20:02.9778397Z","endTime":"2019-09-27T13:20:05.902303Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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 cache-control: - no-cache content-length: - - '616' + - '611' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:25:20 GMT + - Fri, 27 Sep 2019 13:20:33 GMT expires: - '-1' pragma: @@ -1093,15 +1091,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[]}' + string: '{"value":[]}' headers: access-control-expose-headers: - Request-Context @@ -1112,7 +1110,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:25:21 GMT + - Fri, 27 Sep 2019 13:20:34 GMT expires: - '-1' pragma: @@ -1146,30 +1144,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/2e28453f-96ca-408c-a939-06e665d8b3a7?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/815e3219-f310-4982-9d0e-c584c80e3ce6?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:25:23 GMT + - Fri, 27 Sep 2019 13:20:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2e28453f-96ca-408c-a939-06e665d8b3a7?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/815e3219-f310-4982-9d0e-c584c80e3ce6?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1197,24 +1195,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2e28453f-96ca-408c-a939-06e665d8b3a7?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/815e3219-f310-4982-9d0e-c584c80e3ce6?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2e28453f-96ca-408c-a939-06e665d8b3a7","name":"2e28453f-96ca-408c-a939-06e665d8b3a7","status":"Deleting","startTime":"2019-07-02T23:25:23.4591324Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/815e3219-f310-4982-9d0e-c584c80e3ce6","name":"815e3219-f310-4982-9d0e-c584c80e3ce6","status":"Deleting","startTime":"2019-09-27T13:20:35.9060988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:25:53 GMT + - Fri, 27 Sep 2019 13:21:07 GMT expires: - '-1' pragma: @@ -1246,24 +1244,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2e28453f-96ca-408c-a939-06e665d8b3a7?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/815e3219-f310-4982-9d0e-c584c80e3ce6?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2e28453f-96ca-408c-a939-06e665d8b3a7","name":"2e28453f-96ca-408c-a939-06e665d8b3a7","status":"Deleting","startTime":"2019-07-02T23:25:23.4591324Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/815e3219-f310-4982-9d0e-c584c80e3ce6","name":"815e3219-f310-4982-9d0e-c584c80e3ce6","status":"Deleting","startTime":"2019-09-27T13:20:35.9060988Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:26:25 GMT + - Fri, 27 Sep 2019 13:21:37 GMT expires: - '-1' pragma: @@ -1295,24 +1293,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2e28453f-96ca-408c-a939-06e665d8b3a7?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/815e3219-f310-4982-9d0e-c584c80e3ce6?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2e28453f-96ca-408c-a939-06e665d8b3a7","name":"2e28453f-96ca-408c-a939-06e665d8b3a7","status":"Succeeded","startTime":"2019-07-02T23:25:23.4591324Z","endTime":"2019-07-02T23:26:25.8952634Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/815e3219-f310-4982-9d0e-c584c80e3ce6","name":"815e3219-f310-4982-9d0e-c584c80e3ce6","status":"Succeeded","startTime":"2019-09-27T13:20:35.9060988Z","endTime":"2019-09-27T13:21:40.4703386Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:26:56 GMT + - Fri, 27 Sep 2019 13:22:07 GMT expires: - '-1' pragma: @@ -1344,26 +1342,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:26:57 GMT + - Fri, 27 Sep 2019 13:22:07 GMT expires: - '-1' pragma: @@ -1389,30 +1386,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/6cfa8c30-e013-4eea-a4e6-a2f462082c14?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/11e7fa60-e735-4e0b-ab4d-f123abf72fd1?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:26:59 GMT + - Fri, 27 Sep 2019 13:22:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6cfa8c30-e013-4eea-a4e6-a2f462082c14?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/11e7fa60-e735-4e0b-ab4d-f123abf72fd1?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1424,7 +1421,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -1440,24 +1437,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6cfa8c30-e013-4eea-a4e6-a2f462082c14?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/11e7fa60-e735-4e0b-ab4d-f123abf72fd1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6cfa8c30-e013-4eea-a4e6-a2f462082c14","name":"6cfa8c30-e013-4eea-a4e6-a2f462082c14","status":"Succeeded","startTime":"2019-07-02T23:26:59.635958Z","endTime":"2019-07-02T23:26:59.9328624Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/11e7fa60-e735-4e0b-ab4d-f123abf72fd1","name":"11e7fa60-e735-4e0b-ab4d-f123abf72fd1","status":"Succeeded","startTime":"2019-09-27T13:22:10.1191531Z","endTime":"2019-09-27T13:22:10.2911477Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '554' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:27:30 GMT + - Fri, 27 Sep 2019 13:22:40 GMT expires: - '-1' pragma: @@ -1488,27 +1485,182 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:22:41 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:22:42 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: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:22:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14994' + 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:22:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14993' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:27:31 GMT + - Fri, 27 Sep 2019 13:22:42 GMT expires: - '-1' pragma: @@ -1534,30 +1686,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/05251f9a-73b0-4f2f-a8a2-42801d1d43fa?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5a459a25-fb94-4269-b506-8bdbef704458?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:27:32 GMT + - Fri, 27 Sep 2019 13:22:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/05251f9a-73b0-4f2f-a8a2-42801d1d43fa?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5a459a25-fb94-4269-b506-8bdbef704458?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1569,7 +1721,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14992' x-powered-by: - ASP.NET status: @@ -1585,24 +1737,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/05251f9a-73b0-4f2f-a8a2-42801d1d43fa?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5a459a25-fb94-4269-b506-8bdbef704458?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/05251f9a-73b0-4f2f-a8a2-42801d1d43fa","name":"05251f9a-73b0-4f2f-a8a2-42801d1d43fa","status":"Succeeded","startTime":"2019-07-02T23:27:33.5111821Z","endTime":"2019-07-02T23:27:33.6674054Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5a459a25-fb94-4269-b506-8bdbef704458","name":"5a459a25-fb94-4269-b506-8bdbef704458","status":"Succeeded","startTime":"2019-09-27T13:22:43.712134Z","endTime":"2019-09-27T13:22:43.8684492Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '516' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:28:08 GMT + - Fri, 27 Sep 2019 13:23:14 GMT expires: - '-1' pragma: @@ -1634,26 +1786,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:28:11 GMT + - Fri, 27 Sep 2019 13:23:14 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 3da65ddc1199..ebc676e31a7f 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A28%3A28.3566484Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T13%3A23%3A49.4093362Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/4f66c4f8-8c9c-4f57-91ab-8428f983a44d?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad809c2b-5a81-4d65-9b11-1933ad1e1846?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:28:28 GMT + - Fri, 27 Sep 2019 13:23:49 GMT etag: - - W/"datetime'2019-07-02T23%3A28%3A28.3566484Z'" + - W/"datetime'2019-09-27T13%3A23%3A49.4093362Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f66c4f8-8c9c-4f57-91ab-8428f983a44d?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad809c2b-5a81-4d65-9b11-1933ad1e1846?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f66c4f8-8c9c-4f57-91ab-8428f983a44d","name":"4f66c4f8-8c9c-4f57-91ab-8428f983a44d","status":"Succeeded","startTime":"2019-07-02T23:28:28.2164086Z","endTime":"2019-07-02T23:28:28.4976561Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad809c2b-5a81-4d65-9b11-1933ad1e1846","name":"ad809c2b-5a81-4d65-9b11-1933ad1e1846","status":"Succeeded","startTime":"2019-09-27T13:23:49.3543459Z","endTime":"2019-09-27T13:23:49.4636948Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:29:00 GMT + - Fri, 27 Sep 2019 13:24:20 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A28%3A28.4907442Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T13%3A23%3A49.4633749Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:29:01 GMT + - Fri, 27 Sep 2019 13:24:21 GMT etag: - - W/"datetime'2019-07-02T23%3A28%3A28.4907442Z'" + - W/"datetime'2019-09-27T13%3A23%3A49.4633749Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A29%3A04.3900841Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A24%3A22.6824003Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/450672d3-7a21-40e2-aa13-92d924f67cd1?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b5505303-888f-4aa5-ab0b-f3036b9d5c33?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:29:04 GMT + - Fri, 27 Sep 2019 13:24:22 GMT etag: - - W/"datetime'2019-07-02T23%3A29%3A04.3900841Z'" + - W/"datetime'2019-09-27T13%3A24%3A22.6824003Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/450672d3-7a21-40e2-aa13-92d924f67cd1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b5505303-888f-4aa5-ab0b-f3036b9d5c33?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/450672d3-7a21-40e2-aa13-92d924f67cd1","name":"450672d3-7a21-40e2-aa13-92d924f67cd1","status":"Succeeded","startTime":"2019-07-02T23:29:04.2673497Z","endTime":"2019-07-02T23:29:04.7829813Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/b5505303-888f-4aa5-ab0b-f3036b9d5c33","name":"b5505303-888f-4aa5-ab0b-f3036b9d5c33","status":"Succeeded","startTime":"2019-09-27T13:24:22.6274179Z","endTime":"2019-09-27T13:24:23.0649244Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:29:35 GMT + - Fri, 27 Sep 2019 13:24:54 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A29%3A04.7793605Z''\"","location":"westcentralus","properties":{"poolId":"d301bb99-05bf-08ec-ef57-20100fec94d6","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A24%3A23.0706822Z''\"","location":"westcentralus","properties":{"poolId":"21552fe1-921b-3bb1-9e91-d8229ded599b","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:29:36 GMT + - Fri, 27 Sep 2019 13:24:54 GMT etag: - - W/"datetime'2019-07-02T23%3A29%3A04.7793605Z'" + - W/"datetime'2019-09-27T13%3A24%3A23.0706822Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A29%3A40.2997447Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A24%3A56.5629056Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/504685b9-9812-4479-b86e-4c9cf4e2d1f8?api-version=2019-07-01 cache-control: - no-cache content-length: - - '758' + - '746' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:29:40 GMT + - Fri, 27 Sep 2019 13:24:56 GMT etag: - - W/"datetime'2019-07-02T23%3A29%3A40.2997447Z'" + - W/"datetime'2019-09-27T13%3A24%3A56.5629056Z'" expires: - '-1' pragma: @@ -386,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/504685b9-9812-4479-b86e-4c9cf4e2d1f8?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218","name":"36c97308-61bd-40f6-bd21-f1dd6dbdd218","status":"Creating","startTime":"2019-07-02T23:29:40.1533113Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/504685b9-9812-4479-b86e-4c9cf4e2d1f8","name":"504685b9-9812-4479-b86e-4c9cf4e2d1f8","status":"Creating","startTime":"2019-09-27T13:24:56.4694059Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:30:11 GMT + - Fri, 27 Sep 2019 13:25:28 GMT expires: - '-1' pragma: @@ -435,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/504685b9-9812-4479-b86e-4c9cf4e2d1f8?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218","name":"36c97308-61bd-40f6-bd21-f1dd6dbdd218","status":"Creating","startTime":"2019-07-02T23:29:40.1533113Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/504685b9-9812-4479-b86e-4c9cf4e2d1f8","name":"504685b9-9812-4479-b86e-4c9cf4e2d1f8","status":"Creating","startTime":"2019-09-27T13:24:56.4694059Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:30:42 GMT + - Fri, 27 Sep 2019 13:25:58 GMT expires: - '-1' pragma: @@ -484,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/504685b9-9812-4479-b86e-4c9cf4e2d1f8?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218","name":"36c97308-61bd-40f6-bd21-f1dd6dbdd218","status":"Creating","startTime":"2019-07-02T23:29:40.1533113Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/504685b9-9812-4479-b86e-4c9cf4e2d1f8","name":"504685b9-9812-4479-b86e-4c9cf4e2d1f8","status":"Creating","startTime":"2019-09-27T13:24:56.4694059Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:31:16 GMT + - Fri, 27 Sep 2019 13:26:29 GMT expires: - '-1' pragma: @@ -533,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/504685b9-9812-4479-b86e-4c9cf4e2d1f8?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218","name":"36c97308-61bd-40f6-bd21-f1dd6dbdd218","status":"Creating","startTime":"2019-07-02T23:29:40.1533113Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/504685b9-9812-4479-b86e-4c9cf4e2d1f8","name":"504685b9-9812-4479-b86e-4c9cf4e2d1f8","status":"Creating","startTime":"2019-09-27T13:24:56.4694059Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:31:52 GMT + - Fri, 27 Sep 2019 13:26:59 GMT expires: - '-1' pragma: @@ -582,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/504685b9-9812-4479-b86e-4c9cf4e2d1f8?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/36c97308-61bd-40f6-bd21-f1dd6dbdd218","name":"36c97308-61bd-40f6-bd21-f1dd6dbdd218","status":"Succeeded","startTime":"2019-07-02T23:29:40.1533113Z","endTime":"2019-07-02T23:32:22.8660512Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/504685b9-9812-4479-b86e-4c9cf4e2d1f8","name":"504685b9-9812-4479-b86e-4c9cf4e2d1f8","status":"Creating","startTime":"2019-09-27T13:24:56.4694059Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:32:26 GMT + - Fri, 27 Sep 2019 13:27:29 GMT expires: - '-1' pragma: @@ -631,26 +630,75 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/504685b9-9812-4479-b86e-4c9cf4e2d1f8?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A32%3A22.863844Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"1ec04956-5f5d-3518-cc3e-03eafe984600","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_88aed16f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"fd433e7b-b914-deff-4137-30baaf7e4840","fileSystemId":"1ec04956-5f5d-3518-cc3e-03eafe984600","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/504685b9-9812-4479-b86e-4c9cf4e2d1f8","name":"504685b9-9812-4479-b86e-4c9cf4e2d1f8","status":"Succeeded","startTime":"2019-09-27T13:24:56.4694059Z","endTime":"2019-09-27T13:27:43.7073715Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '1429' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:32:31 GMT + - Fri, 27 Sep 2019 13:28: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A27%3A43.7138038Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"2b05447f-bdf0-9a55-80d8-4cdbba54d164","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_0e3c106b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"229c83ee-6cd5-ce84-50de-72450ce6acf0","fileSystemId":"2b05447f-bdf0-9a55-80d8-4cdbba54d164","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1406' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Sep 2019 13:28:00 GMT etag: - - W/"datetime'2019-07-02T23%3A32%3A22.863844Z'" + - W/"datetime'2019-09-27T13%3A27%3A43.7138038Z'" expires: - '-1' pragma: @@ -682,28 +730,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A32%3A22.863844Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"1ec04956-5f5d-3518-cc3e-03eafe984600","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_88aed16f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"fd433e7b-b914-deff-4137-30baaf7e4840","fileSystemId":"1ec04956-5f5d-3518-cc3e-03eafe984600","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A27%3A43.7138038Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"2b05447f-bdf0-9a55-80d8-4cdbba54d164","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_0e3c106b","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"229c83ee-6cd5-ce84-50de-72450ce6acf0","fileSystemId":"2b05447f-bdf0-9a55-80d8-4cdbba54d164","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1429' + - '1406' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:32:34 GMT + - Fri, 27 Sep 2019 13:28:01 GMT etag: - - W/"datetime'2019-07-02T23%3A32%3A22.863844Z'" + - W/"datetime'2019-09-27T13%3A27%3A43.7138038Z'" expires: - '-1' pragma: @@ -726,8 +774,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"fileSystemId": "1ec04956-5f5d-3518-cc3e-03eafe984600"}, - "location": "westcentralus"}' + body: '{"location": "westcentralus", "properties": {"fileSystemId": "2b05447f-bdf0-9a55-80d8-4cdbba54d164"}}' headers: Accept: - application/json @@ -740,32 +787,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"1ec04956-5f5d-3518-cc3e-03eafe984600","name":"sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"2b05447f-bdf0-9a55-80d8-4cdbba54d164","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/westcentralus/operationResults/d3f8829c-4de0-45c1-83bd-910f31e41eb4?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e9380013-04f1-4a98-924b-d901b65eff84?api-version=2019-07-01 cache-control: - no-cache content-length: - - '576' + - '572' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:32:41 GMT + - Fri, 27 Sep 2019 13:28:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d3f8829c-4de0-45c1-83bd-910f31e41eb4?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e9380013-04f1-4a98-924b-d901b65eff84?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -777,7 +824,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -793,24 +840,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d3f8829c-4de0-45c1-83bd-910f31e41eb4?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e9380013-04f1-4a98-924b-d901b65eff84?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d3f8829c-4de0-45c1-83bd-910f31e41eb4","name":"d3f8829c-4de0-45c1-83bd-910f31e41eb4","status":"Succeeded","startTime":"2019-07-02T23:32:41.9456971Z","endTime":"2019-07-02T23:32:44.1175041Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/e9380013-04f1-4a98-924b-d901b65eff84","name":"e9380013-04f1-4a98-924b-d901b65eff84","status":"Succeeded","startTime":"2019-09-27T13:28:05.3868235Z","endTime":"2019-09-27T13:28:07.1680785Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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 cache-control: - no-cache content-length: - - '616' + - '612' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:33:17 GMT + - Fri, 27 Sep 2019 13:28:36 GMT expires: - '-1' pragma: @@ -842,24 +889,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"cc28851b-ed4c-fb27-f928-c52c2a96025a","fileSystemId":"1ec04956-5f5d-3518-cc3e-03eafe984600","name":"sdk-py-tests-snapshot-1","created":"2019-07-02T23:32:42Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"c8c1799d-4bef-b3e4-685f-8a387d9e4667","fileSystemId":"2b05447f-bdf0-9a55-80d8-4cdbba54d164","name":"sdk-py-tests-snapshot-1","created":"2019-09-27T13:28:05Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '662' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:33:21 GMT + - Fri, 27 Sep 2019 13:28:37 GMT expires: - '-1' pragma: @@ -891,26 +938,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"cc28851b-ed4c-fb27-f928-c52c2a96025a","fileSystemId":"1ec04956-5f5d-3518-cc3e-03eafe984600","name":"sdk-py-tests-snapshot-1","created":"2019-07-02T23:32:42Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"c8c1799d-4bef-b3e4-685f-8a387d9e4667","fileSystemId":"2b05447f-bdf0-9a55-80d8-4cdbba54d164","name":"sdk-py-tests-snapshot-1","created":"2019-09-27T13:28:05Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '662' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:33:25 GMT + - Fri, 27 Sep 2019 13:28:38 GMT expires: - '-1' pragma: @@ -944,30 +991,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '' + 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/1c8f073e-267f-4871-8b13-c118e5621432?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d9a2976b-3068-4f09-b840-286d7049b017?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:33:30 GMT + - Fri, 27 Sep 2019 13:28:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c8f073e-267f-4871-8b13-c118e5621432?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d9a2976b-3068-4f09-b840-286d7049b017?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -995,24 +1042,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c8f073e-267f-4871-8b13-c118e5621432?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d9a2976b-3068-4f09-b840-286d7049b017?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1c8f073e-267f-4871-8b13-c118e5621432","name":"1c8f073e-267f-4871-8b13-c118e5621432","status":"Succeeded","startTime":"2019-07-02T23:33:31.1571634Z","endTime":"2019-07-02T23:33:34.5165856Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/d9a2976b-3068-4f09-b840-286d7049b017","name":"d9a2976b-3068-4f09-b840-286d7049b017","status":"Succeeded","startTime":"2019-09-27T13:28:39.2796986Z","endTime":"2019-09-27T13:28:41.9798299Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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 cache-control: - no-cache content-length: - - '616' + - '612' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:34:06 GMT + - Fri, 27 Sep 2019 13:29:10 GMT expires: - '-1' pragma: @@ -1046,30 +1093,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/ec6fb5bc-c6eb-4875-b6fc-b5fc83e643ea?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5969b295-ffaf-4c39-9e17-a4e011c352aa?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:34:10 GMT + - Fri, 27 Sep 2019 13:29:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ec6fb5bc-c6eb-4875-b6fc-b5fc83e643ea?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5969b295-ffaf-4c39-9e17-a4e011c352aa?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1097,24 +1144,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ec6fb5bc-c6eb-4875-b6fc-b5fc83e643ea?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5969b295-ffaf-4c39-9e17-a4e011c352aa?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ec6fb5bc-c6eb-4875-b6fc-b5fc83e643ea","name":"ec6fb5bc-c6eb-4875-b6fc-b5fc83e643ea","status":"Deleting","startTime":"2019-07-02T23:34:11.1451026Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/5969b295-ffaf-4c39-9e17-a4e011c352aa","name":"5969b295-ffaf-4c39-9e17-a4e011c352aa","status":"Deleting","startTime":"2019-09-27T13:29:11.1745051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:34:45 GMT + - Fri, 27 Sep 2019 13:29:42 GMT expires: - '-1' pragma: @@ -1146,24 +1193,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ec6fb5bc-c6eb-4875-b6fc-b5fc83e643ea?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5969b295-ffaf-4c39-9e17-a4e011c352aa?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ec6fb5bc-c6eb-4875-b6fc-b5fc83e643ea","name":"ec6fb5bc-c6eb-4875-b6fc-b5fc83e643ea","status":"Succeeded","startTime":"2019-07-02T23:34:11.1451026Z","endTime":"2019-07-02T23:35:05.9673143Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/5969b295-ffaf-4c39-9e17-a4e011c352aa","name":"5969b295-ffaf-4c39-9e17-a4e011c352aa","status":"Deleting","startTime":"2019-09-27T13:29:11.1745051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:35:20 GMT + - Fri, 27 Sep 2019 13:30:12 GMT expires: - '-1' pragma: @@ -1195,26 +1242,74 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5969b295-ffaf-4c39-9e17-a4e011c352aa?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5969b295-ffaf-4c39-9e17-a4e011c352aa","name":"5969b295-ffaf-4c39-9e17-a4e011c352aa","status":"Succeeded","startTime":"2019-09-27T13:29:11.1745051Z","endTime":"2019-09-27T13:30:25.251755Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: + - '577' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Sep 2019 13:30: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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:35:26 GMT + - Fri, 27 Sep 2019 13:30:43 GMT expires: - '-1' pragma: @@ -1240,30 +1335,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/1825e41a-bfde-4c47-9993-abbd7ca2f655?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f2a8a6f-d82a-40db-a9bc-06ef32c1d832?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:35:30 GMT + - Fri, 27 Sep 2019 13:30:44 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1825e41a-bfde-4c47-9993-abbd7ca2f655?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f2a8a6f-d82a-40db-a9bc-06ef32c1d832?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1291,24 +1386,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1825e41a-bfde-4c47-9993-abbd7ca2f655?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8f2a8a6f-d82a-40db-a9bc-06ef32c1d832?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1825e41a-bfde-4c47-9993-abbd7ca2f655","name":"1825e41a-bfde-4c47-9993-abbd7ca2f655","status":"Succeeded","startTime":"2019-07-02T23:35:31.2527671Z","endTime":"2019-07-02T23:35:31.5496497Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/8f2a8a6f-d82a-40db-a9bc-06ef32c1d832","name":"8f2a8a6f-d82a-40db-a9bc-06ef32c1d832","status":"Succeeded","startTime":"2019-09-27T13:30:44.5916771Z","endTime":"2019-09-27T13:30:44.7166566Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:36:05 GMT + - Fri, 27 Sep 2019 13:31:15 GMT expires: - '-1' pragma: @@ -1339,27 +1434,182 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:31:15 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:31:15 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: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:31:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14994' + 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:31:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14993' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:36:10 GMT + - Fri, 27 Sep 2019 13:31:16 GMT expires: - '-1' pragma: @@ -1385,30 +1635,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/edfae703-80c1-474d-9603-f3c57e5bbb82?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a9250cac-0a54-4596-bef0-8efc961167e9?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:36:14 GMT + - Fri, 27 Sep 2019 13:31:18 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/edfae703-80c1-474d-9603-f3c57e5bbb82?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a9250cac-0a54-4596-bef0-8efc961167e9?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1420,7 +1670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14992' x-powered-by: - ASP.NET status: @@ -1436,24 +1686,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/edfae703-80c1-474d-9603-f3c57e5bbb82?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a9250cac-0a54-4596-bef0-8efc961167e9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/edfae703-80c1-474d-9603-f3c57e5bbb82","name":"edfae703-80c1-474d-9603-f3c57e5bbb82","status":"Succeeded","startTime":"2019-07-02T23:36:15.2096827Z","endTime":"2019-07-02T23:36:15.3659277Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a9250cac-0a54-4596-bef0-8efc961167e9","name":"a9250cac-0a54-4596-bef0-8efc961167e9","status":"Succeeded","startTime":"2019-09-27T13:31:18.9119978Z","endTime":"2019-09-27T13:31:19.0057295Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:36:50 GMT + - Fri, 27 Sep 2019 13:31:49 GMT expires: - '-1' pragma: @@ -1485,26 +1735,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:36:53 GMT + - Fri, 27 Sep 2019 13:31:50 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 0b677dc9ea51..2c49ecca0382 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A37%3A13.3990938Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T13%3A31%3A55.3142531Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/8369b28d-14bc-41d9-b772-f54c2455685b?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b772bde1-b1ff-41e1-be70-8c0460e4d787?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:37:13 GMT + - Fri, 27 Sep 2019 13:31:55 GMT etag: - - W/"datetime'2019-07-02T23%3A37%3A13.3990938Z'" + - W/"datetime'2019-09-27T13%3A31%3A55.3142531Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8369b28d-14bc-41d9-b772-f54c2455685b?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b772bde1-b1ff-41e1-be70-8c0460e4d787?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8369b28d-14bc-41d9-b772-f54c2455685b","name":"8369b28d-14bc-41d9-b772-f54c2455685b","status":"Succeeded","startTime":"2019-07-02T23:37:10.0573414Z","endTime":"2019-07-02T23:37:13.5354171Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b772bde1-b1ff-41e1-be70-8c0460e4d787","name":"b772bde1-b1ff-41e1-be70-8c0460e4d787","status":"Succeeded","startTime":"2019-09-27T13:31:55.2490808Z","endTime":"2019-09-27T13:31:55.4053291Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:37:49 GMT + - Fri, 27 Sep 2019 13:32:27 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A37%3A13.5311865Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T13%3A31%3A55.4013152Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:37:52 GMT + - Fri, 27 Sep 2019 13:32:27 GMT etag: - - W/"datetime'2019-07-02T23%3A37%3A13.5311865Z'" + - W/"datetime'2019-09-27T13%3A31%3A55.4013152Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A38%3A01.0778443Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A32%3A28.7842968Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/77acc27a-4b9f-4255-a1e7-d60a2795b372?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bea5424b-51e5-42d8-a1bc-302b378ead64?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:38:01 GMT + - Fri, 27 Sep 2019 13:32:28 GMT etag: - - W/"datetime'2019-07-02T23%3A38%3A01.0778443Z'" + - W/"datetime'2019-09-27T13%3A32%3A28.7842968Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/77acc27a-4b9f-4255-a1e7-d60a2795b372?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bea5424b-51e5-42d8-a1bc-302b378ead64?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/77acc27a-4b9f-4255-a1e7-d60a2795b372","name":"77acc27a-4b9f-4255-a1e7-d60a2795b372","status":"Succeeded","startTime":"2019-07-02T23:38:00.9329732Z","endTime":"2019-07-02T23:38:01.573592Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/bea5424b-51e5-42d8-a1bc-302b378ead64","name":"bea5424b-51e5-42d8-a1bc-302b378ead64","status":"Succeeded","startTime":"2019-09-27T13:32:28.6978037Z","endTime":"2019-09-27T13:32:29.0883773Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '554' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:38:36 GMT + - Fri, 27 Sep 2019 13:33:00 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A38%3A01.5691908Z''\"","location":"westcentralus","properties":{"poolId":"20eb9855-9d91-6b4f-477e-a210c5df1d20","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A32%3A29.0915175Z''\"","location":"westcentralus","properties":{"poolId":"76d9f691-906c-e7ca-914b-c6753a467384","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:38:39 GMT + - Fri, 27 Sep 2019 13:33:00 GMT etag: - - W/"datetime'2019-07-02T23%3A38%3A01.5691908Z'" + - W/"datetime'2019-09-27T13%3A32%3A29.0915175Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A38%3A46.6169916Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A33%3A02.4094523Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c2ce5bab-9bdb-49b3-a7ab-1b652359d690?api-version=2019-07-01 cache-control: - no-cache content-length: - - '758' + - '746' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:38:46 GMT + - Fri, 27 Sep 2019 13:33:02 GMT etag: - - W/"datetime'2019-07-02T23%3A38%3A46.6169916Z'" + - W/"datetime'2019-09-27T13%3A33%3A02.4094523Z'" expires: - '-1' pragma: @@ -386,24 +385,73 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c2ce5bab-9bdb-49b3-a7ab-1b652359d690?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c2ce5bab-9bdb-49b3-a7ab-1b652359d690","name":"c2ce5bab-9bdb-49b3-a7ab-1b652359d690","status":"Creating","startTime":"2019-09-27T13:33:02.3432285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: + - Fri, 27 Sep 2019 13:33:34 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c2ce5bab-9bdb-49b3-a7ab-1b652359d690?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","name":"0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","status":"Creating","startTime":"2019-07-02T23:38:46.4750937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/c2ce5bab-9bdb-49b3-a7ab-1b652359d690","name":"c2ce5bab-9bdb-49b3-a7ab-1b652359d690","status":"Creating","startTime":"2019-09-27T13:33:02.3432285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:39:21 GMT + - Fri, 27 Sep 2019 13:34:04 GMT expires: - '-1' pragma: @@ -435,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c2ce5bab-9bdb-49b3-a7ab-1b652359d690?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","name":"0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","status":"Creating","startTime":"2019-07-02T23:38:46.4750937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/c2ce5bab-9bdb-49b3-a7ab-1b652359d690","name":"c2ce5bab-9bdb-49b3-a7ab-1b652359d690","status":"Creating","startTime":"2019-09-27T13:33:02.3432285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:39:56 GMT + - Fri, 27 Sep 2019 13:34:34 GMT expires: - '-1' pragma: @@ -484,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c2ce5bab-9bdb-49b3-a7ab-1b652359d690?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","name":"0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","status":"Creating","startTime":"2019-07-02T23:38:46.4750937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/c2ce5bab-9bdb-49b3-a7ab-1b652359d690","name":"c2ce5bab-9bdb-49b3-a7ab-1b652359d690","status":"Creating","startTime":"2019-09-27T13:33:02.3432285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:40:31 GMT + - Fri, 27 Sep 2019 13:35:05 GMT expires: - '-1' pragma: @@ -533,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c2ce5bab-9bdb-49b3-a7ab-1b652359d690?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","name":"0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","status":"Creating","startTime":"2019-07-02T23:38:46.4750937Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/c2ce5bab-9bdb-49b3-a7ab-1b652359d690","name":"c2ce5bab-9bdb-49b3-a7ab-1b652359d690","status":"Creating","startTime":"2019-09-27T13:33:02.3432285Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:41:07 GMT + - Fri, 27 Sep 2019 13:35:35 GMT expires: - '-1' pragma: @@ -582,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c2ce5bab-9bdb-49b3-a7ab-1b652359d690?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","name":"0c2a663a-21b6-46f4-b8f6-cca8f0d9cdc6","status":"Succeeded","startTime":"2019-07-02T23:38:46.4750937Z","endTime":"2019-07-02T23:41:35.0398709Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/c2ce5bab-9bdb-49b3-a7ab-1b652359d690","name":"c2ce5bab-9bdb-49b3-a7ab-1b652359d690","status":"Succeeded","startTime":"2019-09-27T13:33:02.3432285Z","endTime":"2019-09-27T13:35:49.875738Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '577' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:41:42 GMT + - Fri, 27 Sep 2019 13:36:05 GMT expires: - '-1' pragma: @@ -631,26 +679,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A41%3A35.0262908Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_13985f7e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"1cd1885f-257c-751a-7db0-7a1457863b80","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A35%3A49.8797589Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_d99978e2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"309f61dd-45f2-c2fc-f13d-37445868e69f","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1406' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:41:49 GMT + - Fri, 27 Sep 2019 13:36:06 GMT etag: - - W/"datetime'2019-07-02T23%3A41%3A35.0262908Z'" + - W/"datetime'2019-09-27T13%3A35%3A49.8797589Z'" expires: - '-1' pragma: @@ -682,28 +730,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A41%3A35.0262908Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_13985f7e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"1cd1885f-257c-751a-7db0-7a1457863b80","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A35%3A49.8797589Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_d99978e2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"309f61dd-45f2-c2fc-f13d-37445868e69f","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1406' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:41:54 GMT + - Fri, 27 Sep 2019 13:36:07 GMT etag: - - W/"datetime'2019-07-02T23%3A41%3A35.0262908Z'" + - W/"datetime'2019-09-27T13%3A35%3A49.8797589Z'" expires: - '-1' pragma: @@ -726,8 +774,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"fileSystemId": "b9724606-eac5-87d9-88a0-ab7beef53963"}, - "location": "westcentralus"}' + body: '{"location": "westcentralus", "properties": {"fileSystemId": "8701db32-cc48-8038-9725-560470960a72"}}' headers: Accept: - application/json @@ -740,32 +787,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-snapshot-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","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/westcentralus/operationResults/ba012f64-5960-4f0a-a51a-bf4166125d2f?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4755c55b-3978-41aa-8148-e0586d34468b?api-version=2019-07-01 cache-control: - no-cache content-length: - - '576' + - '572' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:41:59 GMT + - Fri, 27 Sep 2019 13:36:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ba012f64-5960-4f0a-a51a-bf4166125d2f?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4755c55b-3978-41aa-8148-e0586d34468b?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -793,24 +840,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ba012f64-5960-4f0a-a51a-bf4166125d2f?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4755c55b-3978-41aa-8148-e0586d34468b?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ba012f64-5960-4f0a-a51a-bf4166125d2f","name":"ba012f64-5960-4f0a-a51a-bf4166125d2f","status":"Succeeded","startTime":"2019-07-02T23:41:59.1043284Z","endTime":"2019-07-02T23:42:01.7918676Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/4755c55b-3978-41aa-8148-e0586d34468b","name":"4755c55b-3978-41aa-8148-e0586d34468b","status":"Succeeded","startTime":"2019-09-27T13:36:11.6553598Z","endTime":"2019-09-27T13:36:13.673916Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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 cache-control: - no-cache content-length: - - '616' + - '611' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:42:35 GMT + - Fri, 27 Sep 2019 13:36:43 GMT expires: - '-1' pragma: @@ -842,24 +889,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"ddd1374b-fb8e-1ce4-0260-bc3ff1dbd484","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-snapshot-1","created":"2019-07-02T23:41:59Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"5eb2149d-115f-3b6e-bbce-a7fd3f9fae0c","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","name":"sdk-py-tests-snapshot-1","created":"2019-09-27T13:36:11Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '662' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:42:39 GMT + - Fri, 27 Sep 2019 13:36:43 GMT expires: - '-1' pragma: @@ -891,28 +938,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A41%3A35.0262908Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_13985f7e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"1cd1885f-257c-751a-7db0-7a1457863b80","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T13%3A35%3A49.8797589Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_d99978e2","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"309f61dd-45f2-c2fc-f13d-37445868e69f","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1406' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:42:43 GMT + - Fri, 27 Sep 2019 13:36:44 GMT etag: - - W/"datetime'2019-07-02T23%3A41%3A35.0262908Z'" + - W/"datetime'2019-09-27T13%3A35%3A49.8797589Z'" expires: - '-1' pragma: @@ -935,8 +982,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"fileSystemId": "b9724606-eac5-87d9-88a0-ab7beef53963"}, - "location": "westcentralus"}' + body: '{"location": "westcentralus", "properties": {"fileSystemId": "8701db32-cc48-8038-9725-560470960a72"}}' headers: Accept: - application/json @@ -949,32 +995,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-snapshot-2"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Creating","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","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/westcentralus/operationResults/7f3562db-eaaf-4d16-89ac-bd6b8c9eee12?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6eb1ab2f-2963-47ef-868f-52837930e3fb?api-version=2019-07-01 cache-control: - no-cache content-length: - - '576' + - '572' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:42:50 GMT + - Fri, 27 Sep 2019 13:36:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7f3562db-eaaf-4d16-89ac-bd6b8c9eee12?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6eb1ab2f-2963-47ef-868f-52837930e3fb?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1002,24 +1048,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7f3562db-eaaf-4d16-89ac-bd6b8c9eee12?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6eb1ab2f-2963-47ef-868f-52837930e3fb?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7f3562db-eaaf-4d16-89ac-bd6b8c9eee12","name":"7f3562db-eaaf-4d16-89ac-bd6b8c9eee12","status":"Succeeded","startTime":"2019-07-02T23:42:50.6536698Z","endTime":"2019-07-02T23:42:52.9193122Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/6eb1ab2f-2963-47ef-868f-52837930e3fb","name":"6eb1ab2f-2963-47ef-868f-52837930e3fb","status":"Succeeded","startTime":"2019-09-27T13:36:46.2782594Z","endTime":"2019-09-27T13:36:48.825822Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '616' + - '611' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:43:25 GMT + - Fri, 27 Sep 2019 13:37:18 GMT expires: - '-1' pragma: @@ -1051,24 +1097,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"0b204740-e8d6-12ff-039f-6d1e377555a5","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-snapshot-2","created":"2019-07-02T23:42:50Z"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"b74f283e-03af-7c8f-1d11-1f04be725a9e","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","name":"sdk-py-tests-snapshot-2","created":"2019-09-27T13:36:46Z"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '662' + - '658' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:43:30 GMT + - Fri, 27 Sep 2019 13:37:18 GMT expires: - '-1' pragma: @@ -1100,26 +1146,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"ddd1374b-fb8e-1ce4-0260-bc3ff1dbd484","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-snapshot-1","created":"2019-07-02T23:41:59Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"0b204740-e8d6-12ff-039f-6d1e377555a5","fileSystemId":"b9724606-eac5-87d9-88a0-ab7beef53963","name":"sdk-py-tests-snapshot-2","created":"2019-07-02T23:42:50Z"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"5eb2149d-115f-3b6e-bbce-a7fd3f9fae0c","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","name":"sdk-py-tests-snapshot-1","created":"2019-09-27T13:36:11Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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":"westcentralus","properties":{"provisioningState":"Succeeded","snapshotId":"b74f283e-03af-7c8f-1d11-1f04be725a9e","fileSystemId":"8701db32-cc48-8038-9725-560470960a72","name":"sdk-py-tests-snapshot-2","created":"2019-09-27T13:36:46Z"}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1337' + - '1329' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:43:35 GMT + - Fri, 27 Sep 2019 13:37:18 GMT expires: - '-1' pragma: @@ -1153,30 +1199,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '' + 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/0886acbb-37d5-42b0-9bd9-94e6ebba1618?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9981bb50-75eb-4cd8-bc79-366a44f0d0d9?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:43:39 GMT + - Fri, 27 Sep 2019 13:37:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0886acbb-37d5-42b0-9bd9-94e6ebba1618?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9981bb50-75eb-4cd8-bc79-366a44f0d0d9?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1204,24 +1250,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0886acbb-37d5-42b0-9bd9-94e6ebba1618?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9981bb50-75eb-4cd8-bc79-366a44f0d0d9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0886acbb-37d5-42b0-9bd9-94e6ebba1618","name":"0886acbb-37d5-42b0-9bd9-94e6ebba1618","status":"Succeeded","startTime":"2019-07-02T23:43:39.9352646Z","endTime":"2019-07-02T23:43:43.9195802Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/9981bb50-75eb-4cd8-bc79-366a44f0d0d9","name":"9981bb50-75eb-4cd8-bc79-366a44f0d0d9","status":"Succeeded","startTime":"2019-09-27T13:37:20.3079976Z","endTime":"2019-09-27T13:37:23.1310392Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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 cache-control: - no-cache content-length: - - '616' + - '612' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:44:14 GMT + - Fri, 27 Sep 2019 13:37:50 GMT expires: - '-1' pragma: @@ -1255,30 +1301,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/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=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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=2019-07-01 response: body: - string: !!python/unicode '' + 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/01b65767-e390-4185-b7db-a78e55160511?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b3c513c8-9850-4f08-af3a-772c2cf4e660?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:44:19 GMT + - Fri, 27 Sep 2019 13:37:51 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/01b65767-e390-4185-b7db-a78e55160511?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b3c513c8-9850-4f08-af3a-772c2cf4e660?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1290,7 +1336,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' x-powered-by: - ASP.NET status: @@ -1306,24 +1352,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/01b65767-e390-4185-b7db-a78e55160511?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b3c513c8-9850-4f08-af3a-772c2cf4e660?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/01b65767-e390-4185-b7db-a78e55160511","name":"01b65767-e390-4185-b7db-a78e55160511","status":"Succeeded","startTime":"2019-07-02T23:44:19.8160483Z","endTime":"2019-07-02T23:44:23.7064638Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/b3c513c8-9850-4f08-af3a-772c2cf4e660","name":"b3c513c8-9850-4f08-af3a-772c2cf4e660","status":"Succeeded","startTime":"2019-09-27T13:37:52.1472405Z","endTime":"2019-09-27T13:37:54.8600913Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '616' + - '612' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:44:55 GMT + - Fri, 27 Sep 2019 13:38:23 GMT expires: - '-1' pragma: @@ -1357,30 +1403,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/94426913-b478-4309-9bab-f547b62b11a6?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2c519171-b373-4417-b2ed-ac2fec01f300?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:44:59 GMT + - Fri, 27 Sep 2019 13:38:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94426913-b478-4309-9bab-f547b62b11a6?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2c519171-b373-4417-b2ed-ac2fec01f300?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1392,7 +1438,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' x-powered-by: - ASP.NET status: @@ -1408,24 +1454,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94426913-b478-4309-9bab-f547b62b11a6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2c519171-b373-4417-b2ed-ac2fec01f300?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94426913-b478-4309-9bab-f547b62b11a6","name":"94426913-b478-4309-9bab-f547b62b11a6","status":"Deleting","startTime":"2019-07-02T23:44:59.9012305Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/2c519171-b373-4417-b2ed-ac2fec01f300","name":"2c519171-b373-4417-b2ed-ac2fec01f300","status":"Deleting","startTime":"2019-09-27T13:38:24.0364985Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:45:34 GMT + - Fri, 27 Sep 2019 13:38:55 GMT expires: - '-1' pragma: @@ -1457,24 +1503,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94426913-b478-4309-9bab-f547b62b11a6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2c519171-b373-4417-b2ed-ac2fec01f300?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/94426913-b478-4309-9bab-f547b62b11a6","name":"94426913-b478-4309-9bab-f547b62b11a6","status":"Succeeded","startTime":"2019-07-02T23:44:59.9012305Z","endTime":"2019-07-02T23:45:50.8062909Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/2c519171-b373-4417-b2ed-ac2fec01f300","name":"2c519171-b373-4417-b2ed-ac2fec01f300","status":"Succeeded","startTime":"2019-09-27T13:38:24.0364985Z","endTime":"2019-09-27T13:39:10.6395139Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:46:09 GMT + - Fri, 27 Sep 2019 13:39:25 GMT expires: - '-1' pragma: @@ -1506,26 +1552,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:48:13 GMT + - Fri, 27 Sep 2019 13:39:25 GMT expires: - '-1' pragma: @@ -1551,30 +1596,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/62f2bb15-f350-4ad6-9812-faf9d0bad247?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/07bb0ec5-251c-4707-a665-104616bc6a2b?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:48:15 GMT + - Fri, 27 Sep 2019 13:39:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62f2bb15-f350-4ad6-9812-faf9d0bad247?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/07bb0ec5-251c-4707-a665-104616bc6a2b?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1586,7 +1631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14996' x-powered-by: - ASP.NET status: @@ -1602,24 +1647,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62f2bb15-f350-4ad6-9812-faf9d0bad247?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/07bb0ec5-251c-4707-a665-104616bc6a2b?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62f2bb15-f350-4ad6-9812-faf9d0bad247","name":"62f2bb15-f350-4ad6-9812-faf9d0bad247","status":"Succeeded","startTime":"2019-07-02T23:48:15.4832605Z","endTime":"2019-07-02T23:48:15.7645173Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/07bb0ec5-251c-4707-a665-104616bc6a2b","name":"07bb0ec5-251c-4707-a665-104616bc6a2b","status":"Succeeded","startTime":"2019-09-27T13:39:27.7156696Z","endTime":"2019-09-27T13:39:27.8406168Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:48:46 GMT + - Fri, 27 Sep 2019 13:39:58 GMT expires: - '-1' pragma: @@ -1650,27 +1695,182 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:39:59 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: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:39:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14994' + 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:39:59 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14993' + 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + date: + - Fri, 27 Sep 2019 13:40:00 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14992' + status: + code: 204 + message: No Content +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:48:47 GMT + - Fri, 27 Sep 2019 13:40:00 GMT expires: - '-1' pragma: @@ -1696,30 +1896,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/f82499b7-b1f0-406e-9ca1-c39c8591bfdc?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8442e5db-9253-462b-be14-22e55d967393?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:48:50 GMT + - Fri, 27 Sep 2019 13:40:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f82499b7-b1f0-406e-9ca1-c39c8591bfdc?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8442e5db-9253-462b-be14-22e55d967393?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1731,7 +1931,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14991' x-powered-by: - ASP.NET status: @@ -1747,24 +1947,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f82499b7-b1f0-406e-9ca1-c39c8591bfdc?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8442e5db-9253-462b-be14-22e55d967393?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f82499b7-b1f0-406e-9ca1-c39c8591bfdc","name":"f82499b7-b1f0-406e-9ca1-c39c8591bfdc","status":"Succeeded","startTime":"2019-07-02T23:48:50.2119627Z","endTime":"2019-07-02T23:48:50.368535Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8442e5db-9253-462b-be14-22e55d967393","name":"8442e5db-9253-462b-be14-22e55d967393","status":"Succeeded","startTime":"2019-09-27T13:40:01.0182815Z","endTime":"2019-09-27T13:40:01.1276407Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '520' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:49:20 GMT + - Fri, 27 Sep 2019 13:40:32 GMT expires: - '-1' pragma: @@ -1796,26 +1996,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:49:21 GMT + - Fri, 27 Sep 2019 13:40:31 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 23d181119ff3..05378659b3ef 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A49%3A51.4072193Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T12%3A04%3A24.3486654Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/b9a78497-e38d-4404-a314-880523afea63?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e257c755-3140-437d-ad28-06e37b08d71f?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:49:51 GMT + - Fri, 27 Sep 2019 12:04:24 GMT etag: - - W/"datetime'2019-07-02T23%3A49%3A51.4072193Z'" + - W/"datetime'2019-09-27T12%3A04%3A24.3486654Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b9a78497-e38d-4404-a314-880523afea63?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e257c755-3140-437d-ad28-06e37b08d71f?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b9a78497-e38d-4404-a314-880523afea63","name":"b9a78497-e38d-4404-a314-880523afea63","status":"Succeeded","startTime":"2019-07-02T23:49:51.2769863Z","endTime":"2019-07-02T23:49:51.5417643Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/e257c755-3140-437d-ad28-06e37b08d71f","name":"e257c755-3140-437d-ad28-06e37b08d71f","status":"Succeeded","startTime":"2019-09-27T12:04:24.304917Z","endTime":"2019-09-27T12:04:24.398712Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '515' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:50:22 GMT + - Fri, 27 Sep 2019 12:04:55 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A49%3A51.5313068Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T12%3A04%3A24.3987012Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:50:23 GMT + - Fri, 27 Sep 2019 12:04:55 GMT etag: - - W/"datetime'2019-07-02T23%3A49%3A51.5313068Z'" + - W/"datetime'2019-09-27T12%3A04%3A24.3987012Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A50%3A26.3398813Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A04%3A57.8759178Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/ba66560b-c991-49f9-a6b3-8b72bc6bf8a9?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/770cc1c0-27da-4cc3-a41b-3fcef02da34c?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:50:26 GMT + - Fri, 27 Sep 2019 12:04:58 GMT etag: - - W/"datetime'2019-07-02T23%3A50%3A26.3398813Z'" + - W/"datetime'2019-09-27T12%3A04%3A57.8759178Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ba66560b-c991-49f9-a6b3-8b72bc6bf8a9?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/770cc1c0-27da-4cc3-a41b-3fcef02da34c?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ba66560b-c991-49f9-a6b3-8b72bc6bf8a9","name":"ba66560b-c991-49f9-a6b3-8b72bc6bf8a9","status":"Succeeded","startTime":"2019-07-02T23:50:26.2147441Z","endTime":"2019-07-02T23:50:26.7928614Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/770cc1c0-27da-4cc3-a41b-3fcef02da34c","name":"770cc1c0-27da-4cc3-a41b-3fcef02da34c","status":"Succeeded","startTime":"2019-09-27T12:04:57.8354862Z","endTime":"2019-09-27T12:04:58.1793205Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:50:58 GMT + - Fri, 27 Sep 2019 12:05:29 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A50%3A26.7871967Z''\"","location":"westcentralus","properties":{"poolId":"24a63a44-8d36-04b0-8639-4c988c21edc1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A04%3A58.1801368Z''\"","location":"westcentralus","properties":{"poolId":"9e257f6b-cf4b-ba27-4ef0-3ab53017baab","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:51:00 GMT + - Fri, 27 Sep 2019 12:05:30 GMT etag: - - W/"datetime'2019-07-02T23%3A50%3A26.7871967Z'" + - W/"datetime'2019-09-27T12%3A04%3A58.1801368Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A51%3A13.8203971Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A05%3A42.0218304Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb00a64-564c-42e8-923a-7391ca88b4e0?api-version=2019-07-01 cache-control: - no-cache content-length: - - '758' + - '746' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:51:13 GMT + - Fri, 27 Sep 2019 12:05:42 GMT etag: - - W/"datetime'2019-07-02T23%3A51%3A13.8203971Z'" + - W/"datetime'2019-09-27T12%3A05%3A42.0218304Z'" expires: - '-1' pragma: @@ -370,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -386,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb00a64-564c-42e8-923a-7391ca88b4e0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64","name":"90f09be9-01a6-41b5-9a9f-dcafea2e7b64","status":"Creating","startTime":"2019-07-02T23:51:13.686044Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/0eb00a64-564c-42e8-923a-7391ca88b4e0","name":"0eb00a64-564c-42e8-923a-7391ca88b4e0","status":"Creating","startTime":"2019-09-27T12:05:41.9152852Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '570' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:51:45 GMT + - Fri, 27 Sep 2019 12:06:13 GMT expires: - '-1' pragma: @@ -435,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb00a64-564c-42e8-923a-7391ca88b4e0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64","name":"90f09be9-01a6-41b5-9a9f-dcafea2e7b64","status":"Creating","startTime":"2019-07-02T23:51:13.686044Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/0eb00a64-564c-42e8-923a-7391ca88b4e0","name":"0eb00a64-564c-42e8-923a-7391ca88b4e0","status":"Creating","startTime":"2019-09-27T12:05:41.9152852Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '570' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:52:16 GMT + - Fri, 27 Sep 2019 12:06:44 GMT expires: - '-1' pragma: @@ -484,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb00a64-564c-42e8-923a-7391ca88b4e0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64","name":"90f09be9-01a6-41b5-9a9f-dcafea2e7b64","status":"Creating","startTime":"2019-07-02T23:51:13.686044Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/0eb00a64-564c-42e8-923a-7391ca88b4e0","name":"0eb00a64-564c-42e8-923a-7391ca88b4e0","status":"Creating","startTime":"2019-09-27T12:05:41.9152852Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '570' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:52:47 GMT + - Fri, 27 Sep 2019 12:07:14 GMT expires: - '-1' pragma: @@ -533,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb00a64-564c-42e8-923a-7391ca88b4e0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64","name":"90f09be9-01a6-41b5-9a9f-dcafea2e7b64","status":"Creating","startTime":"2019-07-02T23:51:13.686044Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/0eb00a64-564c-42e8-923a-7391ca88b4e0","name":"0eb00a64-564c-42e8-923a-7391ca88b4e0","status":"Creating","startTime":"2019-09-27T12:05:41.9152852Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '570' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:53:19 GMT + - Fri, 27 Sep 2019 12:07:44 GMT expires: - '-1' pragma: @@ -582,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb00a64-564c-42e8-923a-7391ca88b4e0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64","name":"90f09be9-01a6-41b5-9a9f-dcafea2e7b64","status":"Creating","startTime":"2019-07-02T23:51:13.686044Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/0eb00a64-564c-42e8-923a-7391ca88b4e0","name":"0eb00a64-564c-42e8-923a-7391ca88b4e0","status":"Creating","startTime":"2019-09-27T12:05:41.9152852Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '570' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:53:50 GMT + - Fri, 27 Sep 2019 12:08:15 GMT expires: - '-1' pragma: @@ -631,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/0eb00a64-564c-42e8-923a-7391ca88b4e0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/90f09be9-01a6-41b5-9a9f-dcafea2e7b64","name":"90f09be9-01a6-41b5-9a9f-dcafea2e7b64","status":"Succeeded","startTime":"2019-07-02T23:51:13.686044Z","endTime":"2019-07-02T23:54:08.7876062Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/0eb00a64-564c-42e8-923a-7391ca88b4e0","name":"0eb00a64-564c-42e8-923a-7391ca88b4e0","status":"Succeeded","startTime":"2019-09-27T12:05:41.9152852Z","endTime":"2019-09-27T12:08:33.5797295Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '581' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:54:21 GMT + - Fri, 27 Sep 2019 12:08:46 GMT expires: - '-1' pragma: @@ -680,26 +679,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A54%3A08.7888458Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"b0ff88a5-1c31-856e-f5ac-ba77bb721579","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_e5b5b023","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"72bd14c2-6e05-b5ed-9bef-f7c8a082f20a","fileSystemId":"b0ff88a5-1c31-856e-f5ac-ba77bb721579","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A08%3A33.5870784Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"f1a59ade-3952-946d-20f7-ae9d9fbff12e","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_370260dc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"dbd071f3-c174-8f4f-ad8a-1a930f319066","fileSystemId":"f1a59ade-3952-946d-20f7-ae9d9fbff12e","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1406' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:54:23 GMT + - Fri, 27 Sep 2019 12:08:46 GMT etag: - - W/"datetime'2019-07-02T23%3A54%3A08.7888458Z'" + - W/"datetime'2019-09-27T12%3A08%3A33.5870784Z'" expires: - '-1' pragma: @@ -731,26 +730,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A54%3A08.7888458Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"b0ff88a5-1c31-856e-f5ac-ba77bb721579","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_e5b5b023","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"72bd14c2-6e05-b5ed-9bef-f7c8a082f20a","fileSystemId":"b0ff88a5-1c31-856e-f5ac-ba77bb721579","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A08%3A33.5870784Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"f1a59ade-3952-946d-20f7-ae9d9fbff12e","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_370260dc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"dbd071f3-c174-8f4f-ad8a-1a930f319066","fileSystemId":"f1a59ade-3952-946d-20f7-ae9d9fbff12e","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1442' + - '1418' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:54:23 GMT + - Fri, 27 Sep 2019 12:08:47 GMT expires: - '-1' pragma: @@ -784,30 +783,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/fe9b31eb-3bd2-42cb-b267-1e6fe81621bd?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:54:25 GMT + - Fri, 27 Sep 2019 12:08:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fe9b31eb-3bd2-42cb-b267-1e6fe81621bd?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -835,24 +834,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fe9b31eb-3bd2-42cb-b267-1e6fe81621bd?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fe9b31eb-3bd2-42cb-b267-1e6fe81621bd","name":"fe9b31eb-3bd2-42cb-b267-1e6fe81621bd","status":"Deleting","startTime":"2019-07-02T23:54:26.0426864Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9","name":"5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9","status":"Deleting","startTime":"2019-09-27T12:08:49.0087674Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:54:58 GMT + - Fri, 27 Sep 2019 12:09:20 GMT expires: - '-1' pragma: @@ -884,24 +883,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fe9b31eb-3bd2-42cb-b267-1e6fe81621bd?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/fe9b31eb-3bd2-42cb-b267-1e6fe81621bd","name":"fe9b31eb-3bd2-42cb-b267-1e6fe81621bd","status":"Succeeded","startTime":"2019-07-02T23:54:26.0426864Z","endTime":"2019-07-02T23:55:23.1640776Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9","name":"5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9","status":"Deleting","startTime":"2019-09-27T12:08:49.0087674Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '567' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:55:29 GMT + - Fri, 27 Sep 2019 12:09:50 GMT expires: - '-1' pragma: @@ -933,26 +932,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python - accept-language: - - en-US + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[]}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9","name":"5c6438a3-e72c-4f6e-88e3-3e0c53ed69f9","status":"Succeeded","startTime":"2019-09-27T12:08:49.0087674Z","endTime":"2019-09-27T12:09:52.7741498Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '12' + - '578' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:55:30 GMT + - Fri, 27 Sep 2019 12:10:20 GMT expires: - '-1' pragma: @@ -984,28 +981,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - resource with identifier ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' - is not found."}}' + string: '{"value":[]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '304' + - '12' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:55:31 GMT + - Fri, 27 Sep 2019 12:10:22 GMT expires: - '-1' pragma: @@ -1016,10 +1011,56 @@ 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 +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-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-py-tests-cys'' was not found."}}' + headers: + cache-control: + - no-cache + content-length: + - '231' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Sep 2019 12:10:22 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 @@ -1035,30 +1076,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/b0ae5d0c-0ebb-4be3-bbec-7e77d701482e?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ed81574e-32bc-4f53-9b94-f7a5c6967174?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:55:34 GMT + - Fri, 27 Sep 2019 12:10:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b0ae5d0c-0ebb-4be3-bbec-7e77d701482e?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ed81574e-32bc-4f53-9b94-f7a5c6967174?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1070,7 +1111,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' x-powered-by: - ASP.NET status: @@ -1086,24 +1127,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b0ae5d0c-0ebb-4be3-bbec-7e77d701482e?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ed81574e-32bc-4f53-9b94-f7a5c6967174?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/b0ae5d0c-0ebb-4be3-bbec-7e77d701482e","name":"b0ae5d0c-0ebb-4be3-bbec-7e77d701482e","status":"Succeeded","startTime":"2019-07-02T23:55:33.963945Z","endTime":"2019-07-02T23:55:34.2764675Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/ed81574e-32bc-4f53-9b94-f7a5c6967174","name":"ed81574e-32bc-4f53-9b94-f7a5c6967174","status":"Succeeded","startTime":"2019-09-27T12:10:23.5355121Z","endTime":"2019-09-27T12:10:23.7385692Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '554' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:56:07 GMT + - Fri, 27 Sep 2019 12:10:54 GMT expires: - '-1' pragma: @@ -1135,26 +1176,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:56:18 GMT + - Fri, 27 Sep 2019 12:11:04 GMT expires: - '-1' pragma: @@ -1180,30 +1220,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/ad240b43-bcde-4fe4-b4d5-f30729ffaac5?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2219b963-9bd5-4217-857a-eec68f879849?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 02 Jul 2019 23:56:21 GMT + - Fri, 27 Sep 2019 12:11:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad240b43-bcde-4fe4-b4d5-f30729ffaac5?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2219b963-9bd5-4217-857a-eec68f879849?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1231,24 +1271,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad240b43-bcde-4fe4-b4d5-f30729ffaac5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2219b963-9bd5-4217-857a-eec68f879849?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad240b43-bcde-4fe4-b4d5-f30729ffaac5","name":"ad240b43-bcde-4fe4-b4d5-f30729ffaac5","status":"Succeeded","startTime":"2019-07-02T23:56:21.7923845Z","endTime":"2019-07-02T23:56:21.9330081Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2219b963-9bd5-4217-857a-eec68f879849","name":"2219b963-9bd5-4217-857a-eec68f879849","status":"Succeeded","startTime":"2019-09-27T12:11:05.864819Z","endTime":"2019-09-27T12:11:05.9585299Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '516' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:56:56 GMT + - Fri, 27 Sep 2019 12:11:36 GMT expires: - '-1' pragma: @@ -1280,26 +1320,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:56:59 GMT + - Fri, 27 Sep 2019 12:11:38 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 1fe908b70cdf..a9b04f0782bc 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A57%3A32.6979815Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T09%3A03%3A16.8137211Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/a5d40a0b-58f8-4dd1-a878-2fb21fe63208?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ecf4af6-f78b-42c8-8666-4e52e4f42609?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:57:32 GMT + - Fri, 27 Sep 2019 09:03:17 GMT etag: - - W/"datetime'2019-07-02T23%3A57%3A32.6979815Z'" + - W/"datetime'2019-09-27T09%3A03%3A16.8137211Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a5d40a0b-58f8-4dd1-a878-2fb21fe63208?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ecf4af6-f78b-42c8-8666-4e52e4f42609?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a5d40a0b-58f8-4dd1-a878-2fb21fe63208","name":"a5d40a0b-58f8-4dd1-a878-2fb21fe63208","status":"Succeeded","startTime":"2019-07-02T23:57:32.5675976Z","endTime":"2019-07-02T23:57:32.8330053Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/1ecf4af6-f78b-42c8-8666-4e52e4f42609","name":"1ecf4af6-f78b-42c8-8666-4e52e4f42609","status":"Succeeded","startTime":"2019-09-27T09:03:16.7621039Z","endTime":"2019-09-27T09:03:16.8558973Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:58:08 GMT + - Fri, 27 Sep 2019 09:03:47 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-02T23%3A57%3A32.8220686Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T09%3A03%3A16.8627561Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:58:14 GMT + - Fri, 27 Sep 2019 09:03:48 GMT etag: - - W/"datetime'2019-07-02T23%3A57%3A32.8220686Z'" + - W/"datetime'2019-09-27T09%3A03%3A16.8627561Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A58%3A20.6588292Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A03%3A50.3237109Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/ed256cf4-d01f-4f67-baca-9b9be07e7e96?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/82a67511-2c68-4fdc-b2e0-3c15954060da?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:58:20 GMT + - Fri, 27 Sep 2019 09:03:50 GMT etag: - - W/"datetime'2019-07-02T23%3A58%3A20.6588292Z'" + - W/"datetime'2019-09-27T09%3A03%3A50.3237109Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ed256cf4-d01f-4f67-baca-9b9be07e7e96?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/82a67511-2c68-4fdc-b2e0-3c15954060da?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ed256cf4-d01f-4f67-baca-9b9be07e7e96","name":"ed256cf4-d01f-4f67-baca-9b9be07e7e96","status":"Succeeded","startTime":"2019-07-02T23:58:20.4862422Z","endTime":"2019-07-02T23:58:21.0798888Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/82a67511-2c68-4fdc-b2e0-3c15954060da","name":"82a67511-2c68-4fdc-b2e0-3c15954060da","status":"Succeeded","startTime":"2019-09-27T09:03:50.2790015Z","endTime":"2019-09-27T09:03:50.6863714Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:58:56 GMT + - Fri, 27 Sep 2019 09:04:22 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A58%3A21.0781287Z''\"","location":"westcentralus","properties":{"poolId":"84c3f414-60b0-08bd-7324-b75b02be26a3","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A03%3A50.6879725Z''\"","location":"westcentralus","properties":{"poolId":"2aba5333-4143-db29-a21f-e645fb089959","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:59:03 GMT + - Fri, 27 Sep 2019 09:04:22 GMT etag: - - W/"datetime'2019-07-02T23%3A58%3A21.0781287Z'" + - W/"datetime'2019-09-27T09%3A03%3A50.6879725Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-02T23%3A59%3A21.041455Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A04%3A34.7636359Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/06e04906-ec32-4420-8ec5-ff9c96c6cde0?api-version=2019-07-01 cache-control: - no-cache content-length: - - '757' + - '746' content-type: - application/json; charset=utf-8 date: - - Tue, 02 Jul 2019 23:59:21 GMT + - Fri, 27 Sep 2019 09:04:34 GMT etag: - - W/"datetime'2019-07-02T23%3A59%3A21.041455Z'" + - W/"datetime'2019-09-27T09%3A04%3A34.7636359Z'" expires: - '-1' pragma: @@ -386,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/06e04906-ec32-4420-8ec5-ff9c96c6cde0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56","name":"ad5b1baf-4114-4f9a-9e86-604e3eedeb56","status":"Creating","startTime":"2019-07-02T23:59:20.9165963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/06e04906-ec32-4420-8ec5-ff9c96c6cde0","name":"06e04906-ec32-4420-8ec5-ff9c96c6cde0","status":"Creating","startTime":"2019-09-27T09:04:34.6670268Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Tue, 02 Jul 2019 23:59:56 GMT + - Fri, 27 Sep 2019 09:05:06 GMT expires: - '-1' pragma: @@ -435,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/06e04906-ec32-4420-8ec5-ff9c96c6cde0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56","name":"ad5b1baf-4114-4f9a-9e86-604e3eedeb56","status":"Creating","startTime":"2019-07-02T23:59:20.9165963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/06e04906-ec32-4420-8ec5-ff9c96c6cde0","name":"06e04906-ec32-4420-8ec5-ff9c96c6cde0","status":"Creating","startTime":"2019-09-27T09:04:34.6670268Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:00:31 GMT + - Fri, 27 Sep 2019 09:05:36 GMT expires: - '-1' pragma: @@ -484,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/06e04906-ec32-4420-8ec5-ff9c96c6cde0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56","name":"ad5b1baf-4114-4f9a-9e86-604e3eedeb56","status":"Creating","startTime":"2019-07-02T23:59:20.9165963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/06e04906-ec32-4420-8ec5-ff9c96c6cde0","name":"06e04906-ec32-4420-8ec5-ff9c96c6cde0","status":"Creating","startTime":"2019-09-27T09:04:34.6670268Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:01:09 GMT + - Fri, 27 Sep 2019 09:06:07 GMT expires: - '-1' pragma: @@ -533,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/06e04906-ec32-4420-8ec5-ff9c96c6cde0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56","name":"ad5b1baf-4114-4f9a-9e86-604e3eedeb56","status":"Creating","startTime":"2019-07-02T23:59:20.9165963Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/06e04906-ec32-4420-8ec5-ff9c96c6cde0","name":"06e04906-ec32-4420-8ec5-ff9c96c6cde0","status":"Creating","startTime":"2019-09-27T09:04:34.6670268Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:01:46 GMT + - Fri, 27 Sep 2019 09:06:37 GMT expires: - '-1' pragma: @@ -582,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/06e04906-ec32-4420-8ec5-ff9c96c6cde0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad5b1baf-4114-4f9a-9e86-604e3eedeb56","name":"ad5b1baf-4114-4f9a-9e86-604e3eedeb56","status":"Succeeded","startTime":"2019-07-02T23:59:20.9165963Z","endTime":"2019-07-03T00:02:12.861588Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/06e04906-ec32-4420-8ec5-ff9c96c6cde0","name":"06e04906-ec32-4420-8ec5-ff9c96c6cde0","status":"Creating","startTime":"2019-09-27T09:04:34.6670268Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '581' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:02:21 GMT + - Fri, 27 Sep 2019 09:07:08 GMT expires: - '-1' pragma: @@ -631,26 +630,75 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/06e04906-ec32-4420-8ec5-ff9c96c6cde0?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A02%3A12.8607294Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"6d5f6baa-b30e-2929-fb47-21bcfbc8fc2a","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_4beae62d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"bf2b0604-4ea0-10b8-30bf-a21bf45591ab","fileSystemId":"6d5f6baa-b30e-2929-fb47-21bcfbc8fc2a","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/06e04906-ec32-4420-8ec5-ff9c96c6cde0","name":"06e04906-ec32-4420-8ec5-ff9c96c6cde0","status":"Succeeded","startTime":"2019-09-27T09:04:34.6670268Z","endTime":"2019-09-27T09:07:18.8122407Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '1430' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:02:25 GMT + - Fri, 27 Sep 2019 09:07: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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A07%3A18.8238773Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"791117d1-1018-37c8-63db-fcf3507fc29d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_5244fa2c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ffd6a48d-c92e-cab7-4d71-24dfbda8e3dd","fileSystemId":"791117d1-1018-37c8-63db-fcf3507fc29d","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' + headers: + access-control-expose-headers: + - Request-Context + cache-control: + - no-cache + content-length: + - '1406' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 27 Sep 2019 09:07:38 GMT etag: - - W/"datetime'2019-07-03T00%3A02%3A12.8607294Z'" + - W/"datetime'2019-09-27T09%3A07%3A18.8238773Z'" expires: - '-1' pragma: @@ -682,28 +730,28 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A02%3A12.8607294Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"6d5f6baa-b30e-2929-fb47-21bcfbc8fc2a","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_4beae62d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"bf2b0604-4ea0-10b8-30bf-a21bf45591ab","fileSystemId":"6d5f6baa-b30e-2929-fb47-21bcfbc8fc2a","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A07%3A18.8238773Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"791117d1-1018-37c8-63db-fcf3507fc29d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_5244fa2c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ffd6a48d-c92e-cab7-4d71-24dfbda8e3dd","fileSystemId":"791117d1-1018-37c8-63db-fcf3507fc29d","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1406' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:02:30 GMT + - Fri, 27 Sep 2019 09:07:40 GMT etag: - - W/"datetime'2019-07-03T00%3A02%3A12.8607294Z'" + - W/"datetime'2019-09-27T09%3A07%3A18.8238773Z'" expires: - '-1' pragma: @@ -737,30 +785,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/67398b7a-8258-4f6b-9d82-b79ce323dce0?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad6824d2-6cba-4d19-b90b-2cb8587f188b?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:02:34 GMT + - Fri, 27 Sep 2019 09:07:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/67398b7a-8258-4f6b-9d82-b79ce323dce0?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad6824d2-6cba-4d19-b90b-2cb8587f188b?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -788,24 +836,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/67398b7a-8258-4f6b-9d82-b79ce323dce0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad6824d2-6cba-4d19-b90b-2cb8587f188b?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/67398b7a-8258-4f6b-9d82-b79ce323dce0","name":"67398b7a-8258-4f6b-9d82-b79ce323dce0","status":"Deleting","startTime":"2019-07-03T00:02:34.4399634Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/ad6824d2-6cba-4d19-b90b-2cb8587f188b","name":"ad6824d2-6cba-4d19-b90b-2cb8587f188b","status":"Deleting","startTime":"2019-09-27T09:07:41.7985706Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:03:09 GMT + - Fri, 27 Sep 2019 09:08:13 GMT expires: - '-1' pragma: @@ -837,24 +885,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/67398b7a-8258-4f6b-9d82-b79ce323dce0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad6824d2-6cba-4d19-b90b-2cb8587f188b?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/67398b7a-8258-4f6b-9d82-b79ce323dce0","name":"67398b7a-8258-4f6b-9d82-b79ce323dce0","status":"Succeeded","startTime":"2019-07-03T00:02:34.4399634Z","endTime":"2019-07-03T00:03:17.6230709Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/ad6824d2-6cba-4d19-b90b-2cb8587f188b","name":"ad6824d2-6cba-4d19-b90b-2cb8587f188b","status":"Deleting","startTime":"2019-09-27T09:07:41.7985706Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:03:44 GMT + - Fri, 27 Sep 2019 09:08:43 GMT expires: - '-1' pragma: @@ -886,26 +934,74 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad6824d2-6cba-4d19-b90b-2cb8587f188b?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ad6824d2-6cba-4d19-b90b-2cb8587f188b","name":"ad6824d2-6cba-4d19-b90b-2cb8587f188b","status":"Succeeded","startTime":"2019-09-27T09:07:41.7985706Z","endTime":"2019-09-27T09:09:04.3994215Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: + - Fri, 27 Sep 2019 09:09:13 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:07:10 GMT + - Fri, 27 Sep 2019 09:12:34 GMT expires: - '-1' pragma: @@ -931,30 +1027,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/4484ceb1-f89a-473c-a754-78f39faaad0c?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8cbaeab7-f29d-498f-89ee-a176e7574fc3?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:07:16 GMT + - Fri, 27 Sep 2019 09:12:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4484ceb1-f89a-473c-a754-78f39faaad0c?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8cbaeab7-f29d-498f-89ee-a176e7574fc3?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -966,7 +1062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -982,24 +1078,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4484ceb1-f89a-473c-a754-78f39faaad0c?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8cbaeab7-f29d-498f-89ee-a176e7574fc3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4484ceb1-f89a-473c-a754-78f39faaad0c","name":"4484ceb1-f89a-473c-a754-78f39faaad0c","status":"Succeeded","startTime":"2019-07-03T00:07:16.5935215Z","endTime":"2019-07-03T00:07:17.0719584Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/8cbaeab7-f29d-498f-89ee-a176e7574fc3","name":"8cbaeab7-f29d-498f-89ee-a176e7574fc3","status":"Succeeded","startTime":"2019-09-27T09:12:35.4435263Z","endTime":"2019-09-27T09:12:35.6155175Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:07:51 GMT + - Fri, 27 Sep 2019 09:13:06 GMT expires: - '-1' pragma: @@ -1031,26 +1127,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:08:04 GMT + - Fri, 27 Sep 2019 09:13:16 GMT expires: - '-1' pragma: @@ -1076,30 +1171,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/d1f28803-48ea-493f-83fd-b1ae34e53196?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/57000315-2077-433d-af39-9ed04af78f17?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:08:10 GMT + - Fri, 27 Sep 2019 09:13:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1f28803-48ea-493f-83fd-b1ae34e53196?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/57000315-2077-433d-af39-9ed04af78f17?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1127,24 +1222,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1f28803-48ea-493f-83fd-b1ae34e53196?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/57000315-2077-433d-af39-9ed04af78f17?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d1f28803-48ea-493f-83fd-b1ae34e53196","name":"d1f28803-48ea-493f-83fd-b1ae34e53196","status":"Succeeded","startTime":"2019-07-03T00:08:11.1216524Z","endTime":"2019-07-03T00:08:11.2935509Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/57000315-2077-433d-af39-9ed04af78f17","name":"57000315-2077-433d-af39-9ed04af78f17","status":"Succeeded","startTime":"2019-09-27T09:13:17.7867783Z","endTime":"2019-09-27T09:13:17.8649267Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:08:45 GMT + - Fri, 27 Sep 2019 09:13:48 GMT expires: - '-1' pragma: @@ -1176,26 +1271,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:08:52 GMT + - Fri, 27 Sep 2019 09:13:51 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 7d69fb3b6dc7..6dc0191665e4 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T00%3A09%3A11.4279762Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T09%3A13%3A55.7488442Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/aa1f5f91-2004-405e-b7ca-98cedd0702d6?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ed2a8a3-381f-48dc-8d7f-59d03754ad3a?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:09:11 GMT + - Fri, 27 Sep 2019 09:13:55 GMT etag: - - W/"datetime'2019-07-03T00%3A09%3A11.4279762Z'" + - W/"datetime'2019-09-27T09%3A13%3A55.7488442Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa1f5f91-2004-405e-b7ca-98cedd0702d6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ed2a8a3-381f-48dc-8d7f-59d03754ad3a?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/aa1f5f91-2004-405e-b7ca-98cedd0702d6","name":"aa1f5f91-2004-405e-b7ca-98cedd0702d6","status":"Succeeded","startTime":"2019-07-03T00:09:11.2816306Z","endTime":"2019-07-03T00:09:11.5628555Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5ed2a8a3-381f-48dc-8d7f-59d03754ad3a","name":"5ed2a8a3-381f-48dc-8d7f-59d03754ad3a","status":"Succeeded","startTime":"2019-09-27T09:13:55.6922334Z","endTime":"2019-09-27T09:13:55.7859867Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:09:45 GMT + - Fri, 27 Sep 2019 09:14:27 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T00%3A09%3A11.5530632Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T09%3A13%3A55.7988805Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:09:50 GMT + - Fri, 27 Sep 2019 09:14:27 GMT etag: - - W/"datetime'2019-07-03T00%3A09%3A11.5530632Z'" + - W/"datetime'2019-09-27T09%3A13%3A55.7988805Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A09%3A55.5360522Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A14%3A29.2571305Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/5e28148e-593c-403e-a118-5b68f9ddb1d6?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ee7cb4b6-e422-4eb2-a9fd-ef527eda26b7?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:09:55 GMT + - Fri, 27 Sep 2019 09:14:29 GMT etag: - - W/"datetime'2019-07-03T00%3A09%3A55.5360522Z'" + - W/"datetime'2019-09-27T09%3A14%3A29.2571305Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5e28148e-593c-403e-a118-5b68f9ddb1d6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ee7cb4b6-e422-4eb2-a9fd-ef527eda26b7?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/5e28148e-593c-403e-a118-5b68f9ddb1d6","name":"5e28148e-593c-403e-a118-5b68f9ddb1d6","status":"Succeeded","startTime":"2019-07-03T00:09:55.4012205Z","endTime":"2019-07-03T00:09:56.0574731Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/ee7cb4b6-e422-4eb2-a9fd-ef527eda26b7","name":"ee7cb4b6-e422-4eb2-a9fd-ef527eda26b7","status":"Succeeded","startTime":"2019-09-27T09:14:29.1926558Z","endTime":"2019-09-27T09:14:29.5676616Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:10:34 GMT + - Fri, 27 Sep 2019 09:15:00 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A09%3A56.0494146Z''\"","location":"westcentralus","properties":{"poolId":"dd3bf329-4ac6-5740-5ce9-a670bb326047","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A14%3A29.5773631Z''\"","location":"westcentralus","properties":{"poolId":"ba8a4372-b497-82da-055e-4acf0b52371a","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:10:38 GMT + - Fri, 27 Sep 2019 09:15:01 GMT etag: - - W/"datetime'2019-07-03T00%3A09%3A56.0494146Z'" + - W/"datetime'2019-09-27T09%3A14%3A29.5773631Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A10%3A58.2272932Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A15%3A13.6843312Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62702119-7a6e-427d-b43f-15b00f3f5d09?api-version=2019-07-01 cache-control: - no-cache content-length: - - '758' + - '746' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:10:58 GMT + - Fri, 27 Sep 2019 09:15:13 GMT etag: - - W/"datetime'2019-07-03T00%3A10%3A58.2272932Z'" + - W/"datetime'2019-09-27T09%3A15%3A13.6843312Z'" expires: - '-1' pragma: @@ -370,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -386,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62702119-7a6e-427d-b43f-15b00f3f5d09?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759","name":"8704958d-7224-482e-ae0e-94ae68769759","status":"Creating","startTime":"2019-07-03T00:10:58.0643596Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/62702119-7a6e-427d-b43f-15b00f3f5d09","name":"62702119-7a6e-427d-b43f-15b00f3f5d09","status":"Creating","startTime":"2019-09-27T09:15:13.6289934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:11:32 GMT + - Fri, 27 Sep 2019 09:15:46 GMT expires: - '-1' pragma: @@ -435,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62702119-7a6e-427d-b43f-15b00f3f5d09?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759","name":"8704958d-7224-482e-ae0e-94ae68769759","status":"Creating","startTime":"2019-07-03T00:10:58.0643596Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/62702119-7a6e-427d-b43f-15b00f3f5d09","name":"62702119-7a6e-427d-b43f-15b00f3f5d09","status":"Creating","startTime":"2019-09-27T09:15:13.6289934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:12:07 GMT + - Fri, 27 Sep 2019 09:16:16 GMT expires: - '-1' pragma: @@ -484,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62702119-7a6e-427d-b43f-15b00f3f5d09?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759","name":"8704958d-7224-482e-ae0e-94ae68769759","status":"Creating","startTime":"2019-07-03T00:10:58.0643596Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/62702119-7a6e-427d-b43f-15b00f3f5d09","name":"62702119-7a6e-427d-b43f-15b00f3f5d09","status":"Creating","startTime":"2019-09-27T09:15:13.6289934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:12:39 GMT + - Fri, 27 Sep 2019 09:16:46 GMT expires: - '-1' pragma: @@ -533,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62702119-7a6e-427d-b43f-15b00f3f5d09?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759","name":"8704958d-7224-482e-ae0e-94ae68769759","status":"Creating","startTime":"2019-07-03T00:10:58.0643596Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/62702119-7a6e-427d-b43f-15b00f3f5d09","name":"62702119-7a6e-427d-b43f-15b00f3f5d09","status":"Creating","startTime":"2019-09-27T09:15:13.6289934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:13:11 GMT + - Fri, 27 Sep 2019 09:17:16 GMT expires: - '-1' pragma: @@ -582,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62702119-7a6e-427d-b43f-15b00f3f5d09?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759","name":"8704958d-7224-482e-ae0e-94ae68769759","status":"Creating","startTime":"2019-07-03T00:10:58.0643596Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/62702119-7a6e-427d-b43f-15b00f3f5d09","name":"62702119-7a6e-427d-b43f-15b00f3f5d09","status":"Creating","startTime":"2019-09-27T09:15:13.6289934Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:13:42 GMT + - Fri, 27 Sep 2019 09:17:47 GMT expires: - '-1' pragma: @@ -631,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/62702119-7a6e-427d-b43f-15b00f3f5d09?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8704958d-7224-482e-ae0e-94ae68769759","name":"8704958d-7224-482e-ae0e-94ae68769759","status":"Succeeded","startTime":"2019-07-03T00:10:58.0643596Z","endTime":"2019-07-03T00:13:43.5811681Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/62702119-7a6e-427d-b43f-15b00f3f5d09","name":"62702119-7a6e-427d-b43f-15b00f3f5d09","status":"Succeeded","startTime":"2019-09-27T09:15:13.6289934Z","endTime":"2019-09-27T09:18:04.9181548Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:14:13 GMT + - Fri, 27 Sep 2019 09:18:17 GMT expires: - '-1' pragma: @@ -680,26 +679,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A13%3A43.564956Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"34f4f763-d0ce-0888-e0ce-5f848b4df495","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_6a428680","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e02e8464-15a4-799a-3f29-fc939c99768a","fileSystemId":"34f4f763-d0ce-0888-e0ce-5f848b4df495","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A18%3A04.9266651Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"201e5c30-fb2e-5d32-8a11-ecc8919d0aef","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_c6fd456e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"51cdf8d4-4000-c0a1-21f1-c20c3cc23c9f","fileSystemId":"201e5c30-fb2e-5d32-8a11-ecc8919d0aef","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1429' + - '1406' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:14:15 GMT + - Fri, 27 Sep 2019 09:18:18 GMT etag: - - W/"datetime'2019-07-03T00%3A13%3A43.564956Z'" + - W/"datetime'2019-09-27T09%3A18%3A04.9266651Z'" expires: - '-1' pragma: @@ -722,10 +721,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-2"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-2", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -734,34 +732,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A14%3A19.3962391Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A18%3A22.6290492Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/8e93ea61-d760-48aa-97e5-a3b47a04efa6?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2214eeee-33a3-4fde-b43f-93c0f04805cb?api-version=2019-07-01 cache-control: - no-cache content-length: - - '758' + - '746' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:14:19 GMT + - Fri, 27 Sep 2019 09:18:22 GMT etag: - - W/"datetime'2019-07-03T00%3A14%3A19.3962391Z'" + - W/"datetime'2019-09-27T09%3A18%3A22.6290492Z'" expires: - '-1' pragma: @@ -775,7 +773,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -791,24 +789,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8e93ea61-d760-48aa-97e5-a3b47a04efa6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2214eeee-33a3-4fde-b43f-93c0f04805cb?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8e93ea61-d760-48aa-97e5-a3b47a04efa6","name":"8e93ea61-d760-48aa-97e5-a3b47a04efa6","status":"Succeeded","startTime":"2019-07-03T00:14:19.2624144Z","endTime":"2019-07-03T00:14:35.528156Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/2214eeee-33a3-4fde-b43f-93c0f04805cb","name":"2214eeee-33a3-4fde-b43f-93c0f04805cb","status":"Succeeded","startTime":"2019-09-27T09:18:22.5525618Z","endTime":"2019-09-27T09:18:35.5929981Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '581' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:14:50 GMT + - Fri, 27 Sep 2019 09:18:54 GMT expires: - '-1' pragma: @@ -840,26 +838,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A14%3A35.5106082Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"fb1d30e0-452c-95dc-4785-8949d2dd7413","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_6a428680","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"40b2e55a-1571-0596-bb97-4f66a974ee24","fileSystemId":"fb1d30e0-452c-95dc-4785-8949d2dd7413","startIp":"10.0.0.64","endIp":"10.0.0.127","gateway":"10.0.0.65","netmask":"255.255.255.192","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A18%3A35.5941187Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"3121091c-f489-7f31-a753-a40154199a69","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_c6fd456e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"01b58709-67de-40a2-a330-6e403e348bd8","fileSystemId":"3121091c-f489-7f31-a753-a40154199a69","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1431' + - '1406' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:14:52 GMT + - Fri, 27 Sep 2019 09:18:54 GMT etag: - - W/"datetime'2019-07-03T00%3A14%3A35.5106082Z'" + - W/"datetime'2019-09-27T09%3A18%3A35.5941187Z'" expires: - '-1' pragma: @@ -891,26 +889,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2019-07-01 response: body: - string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A13%3A43.564956Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"34f4f763-d0ce-0888-e0ce-5f848b4df495","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_6a428680","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e02e8464-15a4-799a-3f29-fc939c99768a","fileSystemId":"34f4f763-d0ce-0888-e0ce-5f848b4df495","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A14%3A35.5106082Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"fb1d30e0-452c-95dc-4785-8949d2dd7413","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_6a428680","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"40b2e55a-1571-0596-bb97-4f66a974ee24","fileSystemId":"fb1d30e0-452c-95dc-4785-8949d2dd7413","startIp":"10.0.0.64","endIp":"10.0.0.127","gateway":"10.0.0.65","netmask":"255.255.255.192","ipAddress":"10.1.18.4"}]}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A18%3A04.9266651Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"201e5c30-fb2e-5d32-8a11-ecc8919d0aef","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_c6fd456e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"51cdf8d4-4000-c0a1-21f1-c20c3cc23c9f","fileSystemId":"201e5c30-fb2e-5d32-8a11-ecc8919d0aef","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T09%3A18%3A35.5941187Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"3121091c-f489-7f31-a753-a40154199a69","name":"sdk-py-tests-vol-2","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_c6fd456e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"01b58709-67de-40a2-a330-6e403e348bd8","fileSystemId":"3121091c-f489-7f31-a753-a40154199a69","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}]}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '2873' + - '2825' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:14:53 GMT + - Fri, 27 Sep 2019 09:18:55 GMT expires: - '-1' pragma: @@ -944,30 +942,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/4f7b28f8-5c4f-4e36-bd65-900b13f6a22e?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/49d3329c-d772-4b78-8aec-88c13c05e0d2?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:14:55 GMT + - Fri, 27 Sep 2019 09:18:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f7b28f8-5c4f-4e36-bd65-900b13f6a22e?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/49d3329c-d772-4b78-8aec-88c13c05e0d2?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -979,7 +977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -995,24 +993,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f7b28f8-5c4f-4e36-bd65-900b13f6a22e?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/49d3329c-d772-4b78-8aec-88c13c05e0d2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f7b28f8-5c4f-4e36-bd65-900b13f6a22e","name":"4f7b28f8-5c4f-4e36-bd65-900b13f6a22e","status":"Succeeded","startTime":"2019-07-03T00:14:55.03125Z","endTime":"2019-07-03T00:14:59.0937798Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/49d3329c-d772-4b78-8aec-88c13c05e0d2","name":"49d3329c-d772-4b78-8aec-88c13c05e0d2","status":"Succeeded","startTime":"2019-09-27T09:18:55.8415356Z","endTime":"2019-09-27T09:19:00.1465265Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '580' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:15:26 GMT + - Fri, 27 Sep 2019 09:19:26 GMT expires: - '-1' pragma: @@ -1046,30 +1044,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/2d6e362f-3ba8-4511-ac7c-ee2fcb05286f?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f2f326a-e75b-4236-9fbd-6d751f01c9e2?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:15:27 GMT + - Fri, 27 Sep 2019 09:19:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2d6e362f-3ba8-4511-ac7c-ee2fcb05286f?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f2f326a-e75b-4236-9fbd-6d751f01c9e2?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1097,73 +1095,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2d6e362f-3ba8-4511-ac7c-ee2fcb05286f?api-version=2019-06-01 - response: - body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2d6e362f-3ba8-4511-ac7c-ee2fcb05286f","name":"2d6e362f-3ba8-4511-ac7c-ee2fcb05286f","status":"Deleting","startTime":"2019-07-03T00:15:28.062723Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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: - - '570' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 03 Jul 2019 00:15: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-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/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2d6e362f-3ba8-4511-ac7c-ee2fcb05286f?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f2f326a-e75b-4236-9fbd-6d751f01c9e2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2d6e362f-3ba8-4511-ac7c-ee2fcb05286f","name":"2d6e362f-3ba8-4511-ac7c-ee2fcb05286f","status":"Deleting","startTime":"2019-07-03T00:15:28.062723Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/4f2f326a-e75b-4236-9fbd-6d751f01c9e2","name":"4f2f326a-e75b-4236-9fbd-6d751f01c9e2","status":"Deleting","startTime":"2019-09-27T09:19:27.7094632Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '570' + - '567' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:16:31 GMT + - Fri, 27 Sep 2019 09:19:59 GMT expires: - '-1' pragma: @@ -1195,24 +1144,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2d6e362f-3ba8-4511-ac7c-ee2fcb05286f?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/4f2f326a-e75b-4236-9fbd-6d751f01c9e2?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/2d6e362f-3ba8-4511-ac7c-ee2fcb05286f","name":"2d6e362f-3ba8-4511-ac7c-ee2fcb05286f","status":"Succeeded","startTime":"2019-07-03T00:15:28.062723Z","endTime":"2019-07-03T00:16:35.2409423Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/westcentralus/operationResults/4f2f326a-e75b-4236-9fbd-6d751f01c9e2","name":"4f2f326a-e75b-4236-9fbd-6d751f01c9e2","status":"Succeeded","startTime":"2019-09-27T09:19:27.7094632Z","endTime":"2019-09-27T09:20:25.40152Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '581' + - '576' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:17:02 GMT + - Fri, 27 Sep 2019 09:20:29 GMT expires: - '-1' pragma: @@ -1244,26 +1193,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:20:25 GMT + - Fri, 27 Sep 2019 09:23:50 GMT expires: - '-1' pragma: @@ -1287,26 +1235,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:23:51 GMT + - Fri, 27 Sep 2019 09:27:10 GMT expires: - '-1' pragma: @@ -1332,30 +1279,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/24ad7767-13e0-40e1-adb6-86dbdef62e80?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b3178e8-9bb7-4b79-a321-314380ed290c?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:23:55 GMT + - Fri, 27 Sep 2019 09:27:12 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/24ad7767-13e0-40e1-adb6-86dbdef62e80?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b3178e8-9bb7-4b79-a321-314380ed290c?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1383,24 +1330,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/24ad7767-13e0-40e1-adb6-86dbdef62e80?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b3178e8-9bb7-4b79-a321-314380ed290c?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/24ad7767-13e0-40e1-adb6-86dbdef62e80","name":"24ad7767-13e0-40e1-adb6-86dbdef62e80","status":"Succeeded","startTime":"2019-07-03T00:23:56.1808436Z","endTime":"2019-07-03T00:23:56.3839949Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/3b3178e8-9bb7-4b79-a321-314380ed290c","name":"3b3178e8-9bb7-4b79-a321-314380ed290c","status":"Succeeded","startTime":"2019-09-27T09:27:12.7524929Z","endTime":"2019-09-27T09:27:12.98683Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '549' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:24:31 GMT + - Fri, 27 Sep 2019 09:27:43 GMT expires: - '-1' pragma: @@ -1432,26 +1379,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:24:44 GMT + - Fri, 27 Sep 2019 09:27:53 GMT expires: - '-1' pragma: @@ -1477,30 +1423,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/dafea4b4-17d0-4dc8-9fbf-f74276c5e811?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6662662d-a6ce-458b-bb0e-f7b4f1e2dee1?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:24:50 GMT + - Fri, 27 Sep 2019 09:27:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dafea4b4-17d0-4dc8-9fbf-f74276c5e811?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6662662d-a6ce-458b-bb0e-f7b4f1e2dee1?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1528,24 +1474,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dafea4b4-17d0-4dc8-9fbf-f74276c5e811?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6662662d-a6ce-458b-bb0e-f7b4f1e2dee1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/dafea4b4-17d0-4dc8-9fbf-f74276c5e811","name":"dafea4b4-17d0-4dc8-9fbf-f74276c5e811","status":"Succeeded","startTime":"2019-07-03T00:24:51.0548477Z","endTime":"2019-07-03T00:24:51.2110953Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/6662662d-a6ce-458b-bb0e-f7b4f1e2dee1","name":"6662662d-a6ce-458b-bb0e-f7b4f1e2dee1","status":"Succeeded","startTime":"2019-09-27T09:27:55.0194603Z","endTime":"2019-09-27T09:27:55.1131697Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:25:22 GMT + - Fri, 27 Sep 2019 09:28:26 GMT expires: - '-1' pragma: @@ -1577,26 +1523,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:25:25 GMT + - Fri, 27 Sep 2019 09:28:28 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 9d606a03c0e9..f975c2c2c549 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T00%3A25%3A30.5601953Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T12%3A11%3A43.6832131Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/12d271e6-271f-4d6d-b658-88dc42e1f0a6?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/236c2be3-a0d7-47c0-9025-05b7a8222a7a?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:25:30 GMT + - Fri, 27 Sep 2019 12:11:43 GMT etag: - - W/"datetime'2019-07-03T00%3A25%3A30.5601953Z'" + - W/"datetime'2019-09-27T12%3A11%3A43.6832131Z'" expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/12d271e6-271f-4d6d-b658-88dc42e1f0a6?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/236c2be3-a0d7-47c0-9025-05b7a8222a7a?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/12d271e6-271f-4d6d-b658-88dc42e1f0a6","name":"12d271e6-271f-4d6d-b658-88dc42e1f0a6","status":"Succeeded","startTime":"2019-07-03T00:25:30.4170417Z","endTime":"2019-07-03T00:25:30.6982895Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/236c2be3-a0d7-47c0-9025-05b7a8222a7a","name":"236c2be3-a0d7-47c0-9025-05b7a8222a7a","status":"Succeeded","startTime":"2019-09-27T12:11:43.5850929Z","endTime":"2019-09-27T12:11:43.7312761Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:26:08 GMT + - Fri, 27 Sep 2019 12:12:14 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T00%3A25%3A30.6852839Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T12%3A11%3A43.7362511Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:26:13 GMT + - Fri, 27 Sep 2019 12:12:15 GMT etag: - - W/"datetime'2019-07-03T00%3A25%3A30.6852839Z'" + - W/"datetime'2019-09-27T12%3A11%3A43.7362511Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A26%3A18.818293Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A12%3A17.5226144Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/bf52124d-9d33-43d0-bb79-76e73560a9ab?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3f39648a-fa93-4f92-93f6-23d36186b1dd?api-version=2019-07-01 cache-control: - no-cache content-length: - - '470' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:26:19 GMT + - Fri, 27 Sep 2019 12:12:18 GMT etag: - - W/"datetime'2019-07-03T00%3A26%3A18.818293Z'" + - W/"datetime'2019-09-27T12%3A12%3A17.5226144Z'" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-powered-by: - ASP.NET status: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bf52124d-9d33-43d0-bb79-76e73560a9ab?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3f39648a-fa93-4f92-93f6-23d36186b1dd?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bf52124d-9d33-43d0-bb79-76e73560a9ab","name":"bf52124d-9d33-43d0-bb79-76e73560a9ab","status":"Succeeded","startTime":"2019-07-03T00:26:18.6672256Z","endTime":"2019-07-03T00:26:19.2609399Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/3f39648a-fa93-4f92-93f6-23d36186b1dd","name":"3f39648a-fa93-4f92-93f6-23d36186b1dd","status":"Succeeded","startTime":"2019-09-27T12:12:17.4647592Z","endTime":"2019-09-27T12:12:17.8710044Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:26:57 GMT + - Fri, 27 Sep 2019 12:12:49 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A26%3A19.2516011Z''\"","location":"westcentralus","properties":{"poolId":"f2670dcc-8178-c99f-3026-5fc8a0593eb9","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A12%3A17.8738667Z''\"","location":"westcentralus","properties":{"poolId":"f0fd3916-8232-6d53-114d-579121d4c9a0","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:27:01 GMT + - Fri, 27 Sep 2019 12:12:49 GMT etag: - - W/"datetime'2019-07-03T00%3A26%3A19.2516011Z'" + - W/"datetime'2019-09-27T12%3A12%3A17.8738667Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A27%3A19.407379Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A13%3A02.1287646Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7abfa424-0569-4deb-8345-60e779f18fd6?api-version=2019-07-01 cache-control: - no-cache content-length: - - '757' + - '746' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:27:19 GMT + - Fri, 27 Sep 2019 12:13:02 GMT etag: - - W/"datetime'2019-07-03T00%3A27%3A19.407379Z'" + - W/"datetime'2019-09-27T12%3A13%3A02.1287646Z'" expires: - '-1' pragma: @@ -370,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' x-powered-by: - ASP.NET status: @@ -386,24 +385,73 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7abfa424-0569-4deb-8345-60e779f18fd6?api-version=2019-07-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7abfa424-0569-4deb-8345-60e779f18fd6","name":"7abfa424-0569-4deb-8345-60e779f18fd6","status":"Creating","startTime":"2019-09-27T12:13:02.0535291Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: + - Fri, 27 Sep 2019 12:13: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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7abfa424-0569-4deb-8345-60e779f18fd6?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb","name":"95e6af98-8c5a-49e0-b2cd-578cf584e2bb","status":"Creating","startTime":"2019-07-03T00:27:19.2791738Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/7abfa424-0569-4deb-8345-60e779f18fd6","name":"7abfa424-0569-4deb-8345-60e779f18fd6","status":"Creating","startTime":"2019-09-27T12:13:02.0535291Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:27:54 GMT + - Fri, 27 Sep 2019 12:14:04 GMT expires: - '-1' pragma: @@ -435,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7abfa424-0569-4deb-8345-60e779f18fd6?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb","name":"95e6af98-8c5a-49e0-b2cd-578cf584e2bb","status":"Creating","startTime":"2019-07-03T00:27:19.2791738Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/7abfa424-0569-4deb-8345-60e779f18fd6","name":"7abfa424-0569-4deb-8345-60e779f18fd6","status":"Creating","startTime":"2019-09-27T12:13:02.0535291Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:28:29 GMT + - Fri, 27 Sep 2019 12:14:34 GMT expires: - '-1' pragma: @@ -484,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7abfa424-0569-4deb-8345-60e779f18fd6?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb","name":"95e6af98-8c5a-49e0-b2cd-578cf584e2bb","status":"Creating","startTime":"2019-07-03T00:27:19.2791738Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/7abfa424-0569-4deb-8345-60e779f18fd6","name":"7abfa424-0569-4deb-8345-60e779f18fd6","status":"Creating","startTime":"2019-09-27T12:13:02.0535291Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:29:04 GMT + - Fri, 27 Sep 2019 12:15:05 GMT expires: - '-1' pragma: @@ -533,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7abfa424-0569-4deb-8345-60e779f18fd6?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb","name":"95e6af98-8c5a-49e0-b2cd-578cf584e2bb","status":"Creating","startTime":"2019-07-03T00:27:19.2791738Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/7abfa424-0569-4deb-8345-60e779f18fd6","name":"7abfa424-0569-4deb-8345-60e779f18fd6","status":"Creating","startTime":"2019-09-27T12:13:02.0535291Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:29:40 GMT + - Fri, 27 Sep 2019 12:15:36 GMT expires: - '-1' pragma: @@ -582,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/7abfa424-0569-4deb-8345-60e779f18fd6?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/95e6af98-8c5a-49e0-b2cd-578cf584e2bb","name":"95e6af98-8c5a-49e0-b2cd-578cf584e2bb","status":"Succeeded","startTime":"2019-07-03T00:27:19.2791738Z","endTime":"2019-07-03T00:30:11.0120263Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/7abfa424-0569-4deb-8345-60e779f18fd6","name":"7abfa424-0569-4deb-8345-60e779f18fd6","status":"Succeeded","startTime":"2019-09-27T12:13:02.0535291Z","endTime":"2019-09-27T12:15:44.8902005Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:30:14 GMT + - Fri, 27 Sep 2019 12:16:06 GMT expires: - '-1' pragma: @@ -631,26 +679,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A30%3A11.0064045Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"e1d834ad-f949-7fa3-2290-fe99b51251b8","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7a044dad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e9102713-8f39-0b84-998c-d8dd4b00f087","fileSystemId":"e1d834ad-f949-7fa3-2290-fe99b51251b8","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A15%3A44.8963748Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"25b021d1-a06f-8362-274a-db8709e59e58","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_b877f01e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6f287f2c-b4d2-d739-f4d3-28f4ad946232","fileSystemId":"25b021d1-a06f-8362-274a-db8709e59e58","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1430' + - '1406' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:30:17 GMT + - Fri, 27 Sep 2019 12:16:07 GMT etag: - - W/"datetime'2019-07-03T00%3A30%3A11.0064045Z'" + - W/"datetime'2019-09-27T12%3A15%3A44.8963748Z'" expires: - '-1' pragma: @@ -673,8 +721,7 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "serviceLevel": - "Standard"}}' + body: '{"properties": {"serviceLevel": "Premium", "usageThreshold": 214748364800}}' headers: Accept: - application/json @@ -683,32 +730,32 @@ interactions: Connection: - keep-alive Content-Length: - - '76' + - '75' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A30%3A25.4997109Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"e1d834ad-f949-7fa3-2290-fe99b51251b8","name":"sdk-py-tests-vol-1","serviceLevel":"Standard","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_7a044dad","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"e9102713-8f39-0b84-998c-d8dd4b00f087","fileSystemId":"e1d834ad-f949-7fa3-2290-fe99b51251b8","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A16%3A09.6983124Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"25b021d1-a06f-8362-274a-db8709e59e58","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_b877f01e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6f287f2c-b4d2-d739-f4d3-28f4ad946232","fileSystemId":"25b021d1-a06f-8362-274a-db8709e59e58","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1431' + - '1406' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:30:28 GMT + - Fri, 27 Sep 2019 12:16:12 GMT etag: - - W/"datetime'2019-07-03T00%3A30%3A25.4997109Z'" + - W/"datetime'2019-09-27T12%3A16%3A09.6983124Z'" expires: - '-1' pragma: @@ -726,7 +773,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' x-powered-by: - ASP.NET status: @@ -744,30 +791,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/d9ef95db-010a-4401-b153-cb544df40d4a?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/46f2b65e-32a2-4ec6-9f01-73c2e2fd7c98?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:30:34 GMT + - Fri, 27 Sep 2019 12:16:13 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d9ef95db-010a-4401-b153-cb544df40d4a?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/46f2b65e-32a2-4ec6-9f01-73c2e2fd7c98?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -795,24 +842,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d9ef95db-010a-4401-b153-cb544df40d4a?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/46f2b65e-32a2-4ec6-9f01-73c2e2fd7c98?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d9ef95db-010a-4401-b153-cb544df40d4a","name":"d9ef95db-010a-4401-b153-cb544df40d4a","status":"Deleting","startTime":"2019-07-03T00:30:34.8245704Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/46f2b65e-32a2-4ec6-9f01-73c2e2fd7c98","name":"46f2b65e-32a2-4ec6-9f01-73c2e2fd7c98","status":"Deleting","startTime":"2019-09-27T12:16:14.3156051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:31:09 GMT + - Fri, 27 Sep 2019 12:16:45 GMT expires: - '-1' pragma: @@ -844,24 +891,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d9ef95db-010a-4401-b153-cb544df40d4a?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/46f2b65e-32a2-4ec6-9f01-73c2e2fd7c98?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/d9ef95db-010a-4401-b153-cb544df40d4a","name":"d9ef95db-010a-4401-b153-cb544df40d4a","status":"Succeeded","startTime":"2019-07-03T00:30:34.8245704Z","endTime":"2019-07-03T00:31:28.647297Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/46f2b65e-32a2-4ec6-9f01-73c2e2fd7c98","name":"46f2b65e-32a2-4ec6-9f01-73c2e2fd7c98","status":"Succeeded","startTime":"2019-09-27T12:16:14.3156051Z","endTime":"2019-09-27T12:17:09.8957708Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '581' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:31:44 GMT + - Fri, 27 Sep 2019 12:17:15 GMT expires: - '-1' pragma: @@ -893,26 +940,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:35:09 GMT + - Fri, 27 Sep 2019 12:20:36 GMT expires: - '-1' pragma: @@ -938,30 +984,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/8223ee85-1ad5-4b6c-ad1a-c62177d1e6a5?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a8665cbe-bdec-4f54-ba79-3eb401dbd645?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:35:14 GMT + - Fri, 27 Sep 2019 12:20:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8223ee85-1ad5-4b6c-ad1a-c62177d1e6a5?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a8665cbe-bdec-4f54-ba79-3eb401dbd645?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -973,7 +1019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-powered-by: - ASP.NET status: @@ -989,24 +1035,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8223ee85-1ad5-4b6c-ad1a-c62177d1e6a5?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/a8665cbe-bdec-4f54-ba79-3eb401dbd645?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/8223ee85-1ad5-4b6c-ad1a-c62177d1e6a5","name":"8223ee85-1ad5-4b6c-ad1a-c62177d1e6a5","status":"Succeeded","startTime":"2019-07-03T00:35:14.8701746Z","endTime":"2019-07-03T00:35:15.1514277Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/a8665cbe-bdec-4f54-ba79-3eb401dbd645","name":"a8665cbe-bdec-4f54-ba79-3eb401dbd645","status":"Succeeded","startTime":"2019-09-27T12:20:38.4041741Z","endTime":"2019-09-27T12:20:38.6228855Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:35:49 GMT + - Fri, 27 Sep 2019 12:21:09 GMT expires: - '-1' pragma: @@ -1038,26 +1084,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:36:03 GMT + - Fri, 27 Sep 2019 12:21:19 GMT expires: - '-1' pragma: @@ -1083,30 +1128,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/3609e4df-ee0f-4d9e-8faf-e7719e8f3ede?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b93e511-9f40-47e1-b260-8462f1060588?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:36:09 GMT + - Fri, 27 Sep 2019 12:21:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3609e4df-ee0f-4d9e-8faf-e7719e8f3ede?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b93e511-9f40-47e1-b260-8462f1060588?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1118,7 +1163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' x-powered-by: - ASP.NET status: @@ -1134,24 +1179,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3609e4df-ee0f-4d9e-8faf-e7719e8f3ede?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b93e511-9f40-47e1-b260-8462f1060588?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3609e4df-ee0f-4d9e-8faf-e7719e8f3ede","name":"3609e4df-ee0f-4d9e-8faf-e7719e8f3ede","status":"Succeeded","startTime":"2019-07-03T00:36:09.8721027Z","endTime":"2019-07-03T00:36:10.0439718Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/3b93e511-9f40-47e1-b260-8462f1060588","name":"3b93e511-9f40-47e1-b260-8462f1060588","status":"Succeeded","startTime":"2019-09-27T12:21:20.6633115Z","endTime":"2019-09-27T12:21:20.726464Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '516' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:36:45 GMT + - Fri, 27 Sep 2019 12:21:51 GMT expires: - '-1' pragma: @@ -1183,26 +1228,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:36:50 GMT + - Fri, 27 Sep 2019 12:21:54 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 f8e5f5403a02..dd1a001726ac 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: !!python/unicode '{"location": "westcentralus"}' + body: '{"location": "westcentralus"}' headers: Accept: - application/json @@ -13,30 +13,30 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T00%3A37%3A05.9625922Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T12%3A21%3A58.5552147Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","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/westcentralus/operationResults/f220e804-fb87-4aa1-b26e-b6393165da8d?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/185c9a48-869c-4b8b-8484-0f454ab31161?api-version=2019-07-01 cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:37:06 GMT + - Fri, 27 Sep 2019 12:21:58 GMT etag: - - W/"datetime'2019-07-03T00%3A37%3A05.9625922Z'" + - W/"datetime'2019-09-27T12%3A21%3A58.5552147Z'" expires: - '-1' pragma: @@ -66,24 +66,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f220e804-fb87-4aa1-b26e-b6393165da8d?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/185c9a48-869c-4b8b-8484-0f454ab31161?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f220e804-fb87-4aa1-b26e-b6393165da8d","name":"f220e804-fb87-4aa1-b26e-b6393165da8d","status":"Succeeded","startTime":"2019-07-03T00:37:05.8297788Z","endTime":"2019-07-03T00:37:06.1110334Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/185c9a48-869c-4b8b-8484-0f454ab31161","name":"185c9a48-869c-4b8b-8484-0f454ab31161","status":"Succeeded","startTime":"2019-09-27T12:21:58.5050496Z","endTime":"2019-09-27T12:21:58.6144265Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '521' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:37:43 GMT + - Fri, 27 Sep 2019 12:22:29 GMT expires: - '-1' pragma: @@ -115,26 +115,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-07-03T00%3A37%3A06.0976871Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-09-27T12%3A21%3A58.6142575Z''\"","location":"westcentralus","properties":{"name":"sdk-py-tests-acc-1","provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '386' + - '382' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:37:43 GMT + - Fri, 27 Sep 2019 12:22:29 GMT etag: - - W/"datetime'2019-07-03T00%3A37%3A06.0976871Z'" + - W/"datetime'2019-09-27T12%3A21%3A58.6142575Z'" expires: - '-1' pragma: @@ -157,8 +157,8 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"location": "westcentralus", "properties": {"serviceLevel": - "Premium", "size": 4398046511104}}' + body: '{"location": "westcentralus", "properties": {"size": 4398046511104, "serviceLevel": + "Premium"}}' headers: Accept: - application/json @@ -171,32 +171,32 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python accept-language: - en-US location: - westcentralus method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A37%3A46.9895694Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A22%3A31.9291977Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","size":4398046511104,"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/westcentralus/operationResults/c33390df-fcfb-40d7-a837-83ae352d122e?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bfdfaa64-5d46-4ff1-99e1-32d61da1c5b9?api-version=2019-07-01 cache-control: - no-cache content-length: - - '471' + - '467' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:37:47 GMT + - Fri, 27 Sep 2019 12:22:32 GMT etag: - - W/"datetime'2019-07-03T00%3A37%3A46.9895694Z'" + - W/"datetime'2019-09-27T12%3A22%3A31.9291977Z'" expires: - '-1' pragma: @@ -226,24 +226,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c33390df-fcfb-40d7-a837-83ae352d122e?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/bfdfaa64-5d46-4ff1-99e1-32d61da1c5b9?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/c33390df-fcfb-40d7-a837-83ae352d122e","name":"c33390df-fcfb-40d7-a837-83ae352d122e","status":"Succeeded","startTime":"2019-07-03T00:37:46.8444156Z","endTime":"2019-07-03T00:37:47.3912972Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/bfdfaa64-5d46-4ff1-99e1-32d61da1c5b9","name":"bfdfaa64-5d46-4ff1-99e1-32d61da1c5b9","status":"Succeeded","startTime":"2019-09-27T12:22:31.8562881Z","endTime":"2019-09-27T12:22:32.246939Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '550' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:38:17 GMT + - Fri, 27 Sep 2019 12:23:03 GMT expires: - '-1' pragma: @@ -275,26 +275,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A37%3A47.3828463Z''\"","location":"westcentralus","properties":{"poolId":"b757626e-a06a-5427-923b-4bce5e6eaee1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A22%3A32.2494302Z''\"","location":"westcentralus","properties":{"poolId":"7ed6e81b-f660-5a37-9f12-b04d0d39fe9b","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '568' + - '564' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:38:19 GMT + - Fri, 27 Sep 2019 12:23:03 GMT etag: - - W/"datetime'2019-07-03T00%3A37%3A47.3828463Z'" + - W/"datetime'2019-09-27T12%3A22%3A32.2494302Z'" expires: - '-1' pragma: @@ -317,10 +317,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Premium", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 107374182400, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -329,34 +328,34 @@ interactions: Connection: - keep-alive Content-Length: - - '332' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A38%3A34.0557057Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","provisioningState":"Creating"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A23%3A16.3492476Z''\"","location":"westcentralus","properties":{"serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","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/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3?api-version=2019-07-01 cache-control: - no-cache content-length: - - '758' + - '746' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:38:34 GMT + - Fri, 27 Sep 2019 12:23:17 GMT etag: - - W/"datetime'2019-07-03T00%3A38%3A34.0557057Z'" + - W/"datetime'2019-09-27T12%3A23%3A16.3492476Z'" expires: - '-1' pragma: @@ -370,7 +369,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-powered-by: - ASP.NET status: @@ -386,24 +385,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0","name":"f9e36179-7168-4d47-81d4-c2c4e1076fc0","status":"Creating","startTime":"2019-07-03T00:38:33.9364817Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","name":"eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","status":"Creating","startTime":"2019-09-27T12:23:16.2731027Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:39:04 GMT + - Fri, 27 Sep 2019 12:23:47 GMT expires: - '-1' pragma: @@ -435,24 +434,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0","name":"f9e36179-7168-4d47-81d4-c2c4e1076fc0","status":"Creating","startTime":"2019-07-03T00:38:33.9364817Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","name":"eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","status":"Creating","startTime":"2019-09-27T12:23:16.2731027Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:39:36 GMT + - Fri, 27 Sep 2019 12:24:18 GMT expires: - '-1' pragma: @@ -484,24 +483,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0","name":"f9e36179-7168-4d47-81d4-c2c4e1076fc0","status":"Creating","startTime":"2019-07-03T00:38:33.9364817Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","name":"eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","status":"Creating","startTime":"2019-09-27T12:23:16.2731027Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:40:10 GMT + - Fri, 27 Sep 2019 12:24:48 GMT expires: - '-1' pragma: @@ -533,24 +532,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0","name":"f9e36179-7168-4d47-81d4-c2c4e1076fc0","status":"Creating","startTime":"2019-07-03T00:38:33.9364817Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","name":"eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","status":"Creating","startTime":"2019-09-27T12:23:16.2731027Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:40:44 GMT + - Fri, 27 Sep 2019 12:25:18 GMT expires: - '-1' pragma: @@ -582,24 +581,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0","name":"f9e36179-7168-4d47-81d4-c2c4e1076fc0","status":"Creating","startTime":"2019-07-03T00:38:33.9364817Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","name":"eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","status":"Creating","startTime":"2019-09-27T12:23:16.2731027Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:41:16 GMT + - Fri, 27 Sep 2019 12:25:49 GMT expires: - '-1' pragma: @@ -631,24 +630,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f9e36179-7168-4d47-81d4-c2c4e1076fc0","name":"f9e36179-7168-4d47-81d4-c2c4e1076fc0","status":"Succeeded","startTime":"2019-07-03T00:38:33.9364817Z","endTime":"2019-07-03T00:41:24.7139329Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","name":"eed76d0e-bf7b-42ba-9ab9-42cabb7a0fd3","status":"Succeeded","startTime":"2019-09-27T12:23:16.2731027Z","endTime":"2019-09-27T12:26:03.0341554Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:41:47 GMT + - Fri, 27 Sep 2019 12:26:20 GMT expires: - '-1' pragma: @@ -680,26 +679,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A41%3A24.695232Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"984645fe-4746-cb10-15f9-b80d9939294d","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_16d121e0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"cb24b811-0fbb-480f-c6bc-0f24679b8dcb","fileSystemId":"984645fe-4746-cb10-15f9-b80d9939294d","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A26%3A03.0298209Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"498571cb-7d6a-5299-5d96-dd21292da011","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_e859c6fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6bb0afb5-5c78-c2ef-fa54-273bfc74054e","fileSystemId":"498571cb-7d6a-5299-5d96-dd21292da011","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '1429' + - '1406' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:41:48 GMT + - Fri, 27 Sep 2019 12:26:20 GMT etag: - - W/"datetime'2019-07-03T00%3A41%3A24.695232Z'" + - W/"datetime'2019-09-27T12%3A26%3A03.0298209Z'" expires: - '-1' pragma: @@ -722,10 +721,9 @@ interactions: code: 200 message: OK - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "subnetId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default", - "serviceLevel": "Standard", "creationToken": "sdk-py-tests-vol-1"}, "location": - "westcentralus"}' + body: 'b''b\''b\\\''b\\\\\\\''{"location": "westcentralus", "properties": {"creationToken": + "sdk-py-tests-vol-1", "serviceLevel": "Premium", "usageThreshold": 214748364800, + "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default"}}\\\\\\\''\\\''\''''' headers: Accept: - application/json @@ -734,32 +732,34 @@ interactions: Connection: - keep-alive Content-Length: - - '333' + - '324' Content-Type: - application/json; charset=utf-8 User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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''2019-07-03T00%3A41%3A51.1309084Z''\"","location":"westcentralus","properties":{"provisioningState":"Succeeded","fileSystemId":"984645fe-4746-cb10-15f9-b80d9939294d","name":"sdk-py-tests-vol-1","serviceLevel":"Standard","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"snapshotPolicy":{"enabled":false},"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"protocolTypes":["NFSv3"],"baremetalTenantId":"baremetalTenant_svm_220be37a7ff14b84ba2fc1aed33a19b9_16d121e0","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.Network/virtualNetworks/sdk-net-tests-rg-wus-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"cb24b811-0fbb-480f-c6bc-0f24679b8dcb","fileSystemId":"984645fe-4746-cb10-15f9-b80d9939294d","startIp":"10.1.18.4","endIp":"10.1.18.4","gateway":"10.1.18.1","netmask":"255.255.255.240","ipAddress":"10.1.18.4"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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''2019-09-27T12%3A26%3A23.0633145Z''\"","location":"westcentralus","properties":{"provisioningState":"Updating","fileSystemId":"498571cb-7d6a-5299-5d96-dd21292da011","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":107374182400,"usedBytes":0,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_e859c6fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6bb0afb5-5c78-c2ef-fa54-273bfc74054e","fileSystemId":"498571cb-7d6a-5299-5d96-dd21292da011","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}]}}' 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/56490e73-6d71-4827-ae2e-0a2b327ee337?api-version=2019-07-01 cache-control: - no-cache content-length: - - '1417' + - '1405' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:41:54 GMT + - Fri, 27 Sep 2019 12:26:22 GMT etag: - - W/"datetime'2019-07-03T00%3A41%3A51.1309084Z'" + - W/"datetime'2019-09-27T12%3A26%3A23.0633145Z'" expires: - '-1' pragma: @@ -777,7 +777,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-powered-by: - ASP.NET status: @@ -792,33 +792,27 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/56490e73-6d71-4827-ae2e-0a2b327ee337?api-version=2019-07-01 response: body: - string: !!python/unicode '' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/56490e73-6d71-4827-ae2e-0a2b327ee337","name":"56490e73-6d71-4827-ae2e-0a2b327ee337","status":"Succeeded","startTime":"2019-09-27T12:26:23.02016Z","endTime":"2019-09-27T12:26:26.7545448Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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/westcentralus/operationResults/9886de85-e4a2-4fe4-81e4-c34abbcfe236?api-version=2019-06-01 cache-control: - no-cache content-length: - - '0' + - '576' + content-type: + - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:41:56 GMT + - Fri, 27 Sep 2019 12:26:53 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9886de85-e4a2-4fe4-81e4-c34abbcfe236?api-version=2019-06-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -827,15 +821,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: - - '14998' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -846,24 +842,26 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9886de85-e4a2-4fe4-81e4-c34abbcfe236?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9886de85-e4a2-4fe4-81e4-c34abbcfe236","name":"9886de85-e4a2-4fe4-81e4-c34abbcfe236","status":"Deleting","startTime":"2019-07-03T00:41:57.0678976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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-py-tests-cys/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''2019-09-27T12%3A26%3A26.7519842Z''\"","location":"westcentralus","properties":{"fileSystemId":"498571cb-7d6a-5299-5d96-dd21292da011","name":"sdk-py-tests-vol-1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","usageThreshold":214748364800,"snapshotPolicy":{"enabled":false},"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_af4380c9b53911e9a537ce0a5a5e91ed_e859c6fa","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-cys-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"6bb0afb5-5c78-c2ef-fa54-273bfc74054e","fileSystemId":"498571cb-7d6a-5299-5d96-dd21292da011","startIp":"10.1.3.4","endIp":"10.1.3.4","gateway":"","netmask":"","ipAddress":"10.1.3.4"}],"provisioningState":"Succeeded"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '571' + - '1392' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:42:31 GMT + - Fri, 27 Sep 2019 12:26:53 GMT + etag: + - W/"datetime'2019-09-27T12%3A26%3A26.7519842Z'" expires: - '-1' pragma: @@ -885,6 +883,59 @@ 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.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-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/cc7c96c4-5edf-4e82-a6cc-19bcceac30e3?api-version=2019-07-01 + cache-control: + - no-cache + content-length: + - '0' + date: + - Fri, 27 Sep 2019 12:26:54 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cc7c96c4-5edf-4e82-a6cc-19bcceac30e3?api-version=2019-07-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: @@ -895,24 +946,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9886de85-e4a2-4fe4-81e4-c34abbcfe236?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cc7c96c4-5edf-4e82-a6cc-19bcceac30e3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9886de85-e4a2-4fe4-81e4-c34abbcfe236","name":"9886de85-e4a2-4fe4-81e4-c34abbcfe236","status":"Deleting","startTime":"2019-07-03T00:41:57.0678976Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/cc7c96c4-5edf-4e82-a6cc-19bcceac30e3","name":"cc7c96c4-5edf-4e82-a6cc-19bcceac30e3","status":"Deleting","startTime":"2019-09-27T12:26:54.9383175Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - Wed, 03 Jul 2019 00:43:02 GMT + - Fri, 27 Sep 2019 12:27:25 GMT expires: - '-1' pragma: @@ -944,24 +995,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9886de85-e4a2-4fe4-81e4-c34abbcfe236?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/cc7c96c4-5edf-4e82-a6cc-19bcceac30e3?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9886de85-e4a2-4fe4-81e4-c34abbcfe236","name":"9886de85-e4a2-4fe4-81e4-c34abbcfe236","status":"Succeeded","startTime":"2019-07-03T00:41:57.0678976Z","endTime":"2019-07-03T00:43:10.3897897Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/cc7c96c4-5edf-4e82-a6cc-19bcceac30e3","name":"cc7c96c4-5edf-4e82-a6cc-19bcceac30e3","status":"Succeeded","startTime":"2019-09-27T12:26:54.9383175Z","endTime":"2019-09-27T12:27:56.7341079Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '582' + - '578' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:43:34 GMT + - Fri, 27 Sep 2019 12:27:56 GMT expires: - '-1' pragma: @@ -993,26 +1044,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"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-tests-rg-wus'' was not found."}}' + 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-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '235' + - '231' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:46:54 GMT + - Fri, 27 Sep 2019 12:31:17 GMT expires: - '-1' pragma: @@ -1038,30 +1088,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/f2013d67-09da-408e-a46d-a39c5d7511a9?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f307b0b9-1e36-4fee-9f29-6ff55715c565?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:46:57 GMT + - Fri, 27 Sep 2019 12:31:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f2013d67-09da-408e-a46d-a39c5d7511a9?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f307b0b9-1e36-4fee-9f29-6ff55715c565?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1073,7 +1123,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' x-powered-by: - ASP.NET status: @@ -1089,24 +1139,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f2013d67-09da-408e-a46d-a39c5d7511a9?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f307b0b9-1e36-4fee-9f29-6ff55715c565?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/f2013d67-09da-408e-a46d-a39c5d7511a9","name":"f2013d67-09da-408e-a46d-a39c5d7511a9","status":"Succeeded","startTime":"2019-07-03T00:46:57.1854361Z","endTime":"2019-07-03T00:46:57.5604369Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/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/f307b0b9-1e36-4fee-9f29-6ff55715c565","name":"f307b0b9-1e36-4fee-9f29-6ff55715c565","status":"Succeeded","startTime":"2019-09-27T12:31:21.2271186Z","endTime":"2019-09-27T12:31:21.4772081Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/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: - - '555' + - '551' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:47:28 GMT + - Fri, 27 Sep 2019 12:31:51 GMT expires: - '-1' pragma: @@ -1138,26 +1188,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' - under resource group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '208' + - '204' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:47:39 GMT + - Fri, 27 Sep 2019 12:32:02 GMT expires: - '-1' pragma: @@ -1183,30 +1232,30 @@ interactions: Content-Length: - '0' User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '' + 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/ddc68124-9f67-44c2-b5b0-5a768120918b?api-version=2019-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9c7d8f47-e3b5-4000-9565-d55ba802b12e?api-version=2019-07-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 03 Jul 2019 00:47:40 GMT + - Fri, 27 Sep 2019 12:32:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ddc68124-9f67-44c2-b5b0-5a768120918b?api-version=2019-06-01&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9c7d8f47-e3b5-4000-9565-d55ba802b12e?api-version=2019-07-01&operationResultResponseType=Location pragma: - no-cache request-context: @@ -1234,24 +1283,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ddc68124-9f67-44c2-b5b0-5a768120918b?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9c7d8f47-e3b5-4000-9565-d55ba802b12e?api-version=2019-07-01 response: body: - string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/ddc68124-9f67-44c2-b5b0-5a768120918b","name":"ddc68124-9f67-44c2-b5b0-5a768120918b","status":"Succeeded","startTime":"2019-07-03T00:47:41.295191Z","endTime":"2019-07-03T00:47:41.451434Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-net-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westcentralus/operationResults/9c7d8f47-e3b5-4000-9565-d55ba802b12e","name":"9c7d8f47-e3b5-4000-9565-d55ba802b12e","status":"Succeeded","startTime":"2019-09-27T12:32:02.7826271Z","endTime":"2019-09-27T12:32:02.8607334Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}' headers: access-control-expose-headers: - Request-Context cache-control: - no-cache content-length: - - '519' + - '517' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:48:15 GMT + - Fri, 27 Sep 2019 12:32:33 GMT expires: - '-1' pragma: @@ -1283,26 +1332,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/2.7.10 (Darwin-17.7.0-x86_64-i386-64bit) msrest/0.6.8 msrest_azure/0.4.34 - azure-mgmt-netapp/1.0.0 Azure-SDK-For-Python + - python/3.6.4 (Darwin-18.7.0-x86_64-i386-64bit) msrest/0.6.10 msrest_azure/0.4.34 + azure-mgmt-netapp/0.5.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-tests-rg-wus/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-cys/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2019-07-01 response: body: - string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' under resource - group ''sdk-net-tests-rg-wus'' was not found."}}' + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1'' + under resource group ''sdk-py-tests-cys'' was not found."}}' headers: cache-control: - no-cache content-length: - - '174' + - '170' content-type: - application/json; charset=utf-8 date: - - Wed, 03 Jul 2019 00:48:21 GMT + - Fri, 27 Sep 2019 12:32:36 GMT expires: - '-1' pragma: diff --git a/sdk/netapp/azure-mgmt-netapp/tests/setup.py b/sdk/netapp/azure-mgmt-netapp/tests/setup.py index c2c9c0916269..505adfdcec2e 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/setup.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/setup.py @@ -4,7 +4,7 @@ # - rg must exist # - vnet must exist -TEST_RG='sdk-net-tests-rg-wus' +TEST_RG='sdk-py-tests-cys' #'sdk-wus2-rg-qat2' TEST_ACC_1='sdk-py-tests-acc-1' TEST_ACC_2='sdk-py-tests-acc-2' TEST_POOL_1='sdk-py-tests-pool-1' @@ -15,8 +15,8 @@ TEST_SNAPSHOT_2='sdk-py-tests-snapshot-2' DEFAULT_SIZE=4398046511104 GIGABYTE=1024 * 1024 * 1024 -SUBSID='0661b131-4a11-479b-96bf-2f95acca2f73' +SUBSID='8f38cfec-0ecd-413a-892e-2494f77a3b56' #'69a75bda-882e-44d5-8431-63421204132a' SERVICE_LEVEL='Premium' LOCATION='westcentralus' -VNET='sdk-net-tests-rg-wus-vnet' +VNET='sdk-py-tests-cys-vnet' #'api-test-vnet-westus2stage' SERVICE_LEVEL='Premium' diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py b/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py index 2fbbafd37415..10aa475a356e 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_pool.py @@ -39,7 +39,19 @@ def wait_for_no_pool(client, rg, acc_name, pool_name, live=False): break def delete_pool(client, rg, acc_name, pool_name, live=False): - client.pools.delete(rg, acc_name, pool_name).wait() + # nest resources seem to hang around for a little while even + # when apparently deleted, therefore give it a chance + co=0 + while co<5: + co += 1 + if live: + time.sleep(10) + try: + client.pools.delete(rg, acc_name, pool_name).wait() + except: + # Want to catch specifically "Can not delete resource before nested resources are deleted." + # but should be safe to generalise + break wait_for_no_pool(client, rg, acc_name, pool_name, live) diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py index 593ea69edf85..5c4e400118d9 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_snapshot.py @@ -32,7 +32,7 @@ def delete_snapshot(client, rg, account_name, pool_name, volume_name, snapshot_n # wait to be sure it has gone - a workaround for the async nature of certain ARM processes co=0 - while co<5: + while co<10: co += 1 if live: time.sleep(20) diff --git a/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py b/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py index 090d457eaccb..b39f560c7ecb 100644 --- a/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py +++ b/sdk/netapp/azure-mgmt-netapp/tests/test_volume.py @@ -92,6 +92,11 @@ def test_create_delete_list_volume(self): live=self.is_live ) self.assertEqual(volume.name, TEST_ACC_1 + '/' + TEST_POOL_1 + '/' + TEST_VOL_1) + # check default export policy and protocol + self.assertTrue(volume.export_policy.rules[0].nfsv3), + self.assertFalse(volume.export_policy.rules[0].nfsv41) + self.assertEqual("0.0.0.0/0", volume.export_policy.rules[0].allowed_clients) + self.assertEqual(volume.protocol_types[0], "NFSv3") volume_list = self.client.volumes.list(TEST_RG, TEST_ACC_1, TEST_POOL_1) self.assertEqual(len(list(volume_list)), 1) @@ -135,13 +140,13 @@ def test_get_volume_by_name(self): def test_update_volume(self): volume = create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live) - self.assertEqual(volume.service_level, "Premium") - self.assertEqual(volume.usage_threshold, 100 * GIGABYTE) + self.assertEqual("Premium", volume.service_level) + self.assertEqual(100 * GIGABYTE, volume.usage_threshold) volume_body = Volume( - usage_threshold = 100 * GIGABYTE, + usage_threshold = 200 * GIGABYTE, creation_token=TEST_VOL_1, - service_level="Standard", + service_level="Premium", # cannot differ from pool location=LOCATION, subnet_id = "/subscriptions/" + SUBSID + "/resourceGroups/" + TEST_RG + "/providers/Microsoft.Network/virtualNetworks/" + VNET + "/subnets/default" ) @@ -153,7 +158,8 @@ def test_update_volume(self): TEST_POOL_1, TEST_VOL_1 ).result() - self.assertEqual(volume.service_level, "Standard") + self.assertEqual("Premium", volume.service_level); # unchanged + self.assertEqual(200 * GIGABYTE, volume.usage_threshold) delete_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live) delete_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, live=self.is_live) @@ -162,10 +168,12 @@ def test_update_volume(self): def test_patch_volume(self): volume = create_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live) self.assertEqual("Premium", volume.service_level); + self.assertEqual(100 * GIGABYTE, volume.usage_threshold); - volume_patch = VolumePatch(service_level = "Standard") + volume_patch = VolumePatch(usage_threshold = 200 * GIGABYTE) volume = self.client.volumes.update(volume_patch, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1) - self.assertEqual("Standard", volume.service_level); + self.assertEqual("Premium", volume.service_level); # unchanged + self.assertEqual(200 * GIGABYTE, volume.usage_threshold); self.client.volumes.delete(TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1).wait() wait_for_no_volume(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1, TEST_VOL_1, live=self.is_live)