From 57e987dee57f76f3c56203cda6576b488a8d2a18 Mon Sep 17 00:00:00 2001 From: Azure SDK for Python bot Date: Wed, 20 Mar 2019 07:43:15 -0700 Subject: [PATCH 1/5] [AutoPR netapp/resource-manager] Update to Release 3.5 standard (pre GA) (#4556) * Generated from 46f3cb6030777135484c1bdc4b1d2146053172f9 NFSAAS-1875 Update to R3.5 Standard (#11) * Generated from 084552639aef23de670f0dc26ba5c9496eb6daff Nfsaas 1875 swagger update (#12) * NFSAAS-1875 Update to R3.5 Standard * NFSAAS-1875 update to R3.5 standard * Generated from 0af27c76c27c57415609e59ba20027b3808ba30e Nfsaas 1875 swagger update (#13) * NFSAAS-1875 Update to R3.5 Standard * NFSAAS-1875 update to R3.5 standard * NFSAAS-1875 updated from review comments --- .../azure/mgmt/netapp/models/__init__.py | 6 ++ .../mgmt/netapp/models/active_directories.py | 60 +++++++++++++++++++ .../netapp/models/active_directories_py3.py | 60 +++++++++++++++++++ ...e_net_app_files_management_client_enums.py | 2 +- .../azure/mgmt/netapp/models/capacity_pool.py | 2 +- .../mgmt/netapp/models/capacity_pool_patch.py | 38 ++++++++++++ .../netapp/models/capacity_pool_patch_py3.py | 40 ++++++++++++- .../mgmt/netapp/models/capacity_pool_py3.py | 2 +- .../mgmt/netapp/models/export_policy_rule.py | 53 ++++++++++++++++ .../netapp/models/export_policy_rule_py3.py | 53 ++++++++++++++++ .../azure/mgmt/netapp/models/mount_target.py | 17 ++++-- .../mgmt/netapp/models/mount_target_py3.py | 19 +++--- .../mgmt/netapp/models/net_app_account.py | 4 ++ .../netapp/models/net_app_account_patch.py | 34 +++++++++++ .../models/net_app_account_patch_py3.py | 36 ++++++++++- .../mgmt/netapp/models/net_app_account_py3.py | 6 +- .../azure/mgmt/netapp/models/volume.py | 6 +- .../azure/mgmt/netapp/models/volume_patch.py | 6 +- .../mgmt/netapp/models/volume_patch_py3.py | 8 ++- .../azure/mgmt/netapp/models/volume_py3.py | 8 ++- .../netapp/operations/accounts_operations.py | 25 ++++---- .../netapp/operations/pools_operations.py | 9 ++- .../netapp/operations/snapshots_operations.py | 2 +- .../azure/mgmt/netapp/version.py | 3 +- 24 files changed, 452 insertions(+), 47 deletions(-) create mode 100644 azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories.py create mode 100644 azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories_py3.py create mode 100644 azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule.py create mode 100644 azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule_py3.py diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py index 169f7b0f0f3f..b584ed1dbfaf 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py @@ -15,10 +15,12 @@ from .metric_specification_py3 import MetricSpecification from .service_specification_py3 import ServiceSpecification from .operation_py3 import Operation + from .active_directories_py3 import ActiveDirectories 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_py3 import Volume from .volume_patch_py3 import VolumePatch from .mount_target_py3 import MountTarget @@ -31,10 +33,12 @@ from .metric_specification import MetricSpecification from .service_specification import ServiceSpecification from .operation import Operation + from .active_directories import ActiveDirectories 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 import Volume from .volume_patch import VolumePatch from .mount_target import MountTarget @@ -57,10 +61,12 @@ 'MetricSpecification', 'ServiceSpecification', 'Operation', + 'ActiveDirectories', 'NetAppAccount', 'NetAppAccountPatch', 'CapacityPool', 'CapacityPoolPatch', + 'ExportPolicyRule', 'Volume', 'VolumePatch', 'MountTarget', diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories.py new file mode 100644 index 000000000000..e5c45d425629 --- /dev/null +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories.py @@ -0,0 +1,60 @@ +# 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 ActiveDirectories(Model): + """Active Directories. + + :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 d_ns: Comma separated list of DNS server IP addresses for the + Active Directory domain + :type d_ns: str + :param status: Status of the Active Directory + :type status: str + :param s_mb_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 s_mb_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'}, + 'd_ns': {'key': 'dNS', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + 's_mb_server_name': {'key': 'sMBServerName', 'type': 'str'}, + 'organizational_unit': {'key': 'organizationalUnit', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(ActiveDirectories, 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.d_ns = kwargs.get('d_ns', None) + self.status = kwargs.get('status', None) + self.s_mb_server_name = kwargs.get('s_mb_server_name', None) + self.organizational_unit = kwargs.get('organizational_unit', None) diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories_py3.py new file mode 100644 index 000000000000..b128e58daca0 --- /dev/null +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories_py3.py @@ -0,0 +1,60 @@ +# 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 ActiveDirectories(Model): + """Active Directories. + + :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 d_ns: Comma separated list of DNS server IP addresses for the + Active Directory domain + :type d_ns: str + :param status: Status of the Active Directory + :type status: str + :param s_mb_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 s_mb_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'}, + 'd_ns': {'key': 'dNS', 'type': 'str'}, + 'status': {'key': 'status', 'type': 'str'}, + 's_mb_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, d_ns: str=None, status: str=None, s_mb_server_name: str=None, organizational_unit: str=None, **kwargs) -> None: + super(ActiveDirectories, self).__init__(**kwargs) + self.active_directory_id = active_directory_id + self.username = username + self.password = password + self.domain = domain + self.d_ns = d_ns + self.status = status + self.s_mb_server_name = s_mb_server_name + self.organizational_unit = organizational_unit diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/azure_net_app_files_management_client_enums.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/azure_net_app_files_management_client_enums.py index 70fe875ab01e..f810f336b84a 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/azure_net_app_files_management_client_enums.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/azure_net_app_files_management_client_enums.py @@ -16,4 +16,4 @@ class ServiceLevel(str, Enum): standard = "Standard" #: Standard service level premium = "Premium" #: Premium service level - extreme = "Extreme" #: Extreme service level + ultra = "Ultra" #: Ultra service level diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool.py index 3dced303adca..953dec4c38d1 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool.py @@ -37,7 +37,7 @@ class CapacityPool(Model): value: 4398046511104 . :type size: long :param service_level: serviceLevel. The service level of the file system. - Possible values include: 'Standard', 'Premium', 'Extreme'. Default value: + 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 diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch.py index 8a9840b47f70..03810e13bf5a 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch.py @@ -15,14 +15,52 @@ 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/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch_py3.py index 92c38df46b26..0ff013d0ef91 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_patch_py3.py @@ -15,14 +15,52 @@ 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, *, tags=None, **kwargs) -> None: + 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/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_py3.py index c2ad853f9f16..71d59a170bdc 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/capacity_pool_py3.py @@ -37,7 +37,7 @@ class CapacityPool(Model): value: 4398046511104 . :type size: long :param service_level: serviceLevel. The service level of the file system. - Possible values include: 'Standard', 'Premium', 'Extreme'. Default value: + 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 diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule.py new file mode 100644 index 000000000000..12b5fbc66822 --- /dev/null +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule.py @@ -0,0 +1,53 @@ +# 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/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule_py3.py new file mode 100644 index 000000000000..62f11c226eb7 --- /dev/null +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/export_policy_rule_py3.py @@ -0,0 +1,53 @@ +# 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/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target.py index e118f00da392..0bbbbbd78e70 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target.py @@ -36,13 +36,13 @@ class MountTarget(Model): :type file_system_id: str :ivar ip_address: ipAddress. The mount target's IPv4 address :vartype ip_address: str - :param vlan_id: vlanid. Vlan Id - :type vlan_id: int + :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: startIp. The end of IPv4 address range to use when creating - a new mount target + :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 @@ -50,6 +50,9 @@ class MountTarget(Model): :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 """ @@ -72,11 +75,12 @@ class MountTarget(Model): 'mount_target_id': {'key': 'properties.mountTargetId', 'type': 'str'}, 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, 'ip_address': {'key': 'properties.ipAddress', 'type': 'str'}, - 'vlan_id': {'key': 'properties.vlanId', 'type': 'int'}, + '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'}, } @@ -89,9 +93,10 @@ def __init__(self, **kwargs): self.mount_target_id = None self.file_system_id = kwargs.get('file_system_id', None) self.ip_address = None - self.vlan_id = kwargs.get('vlan_id', 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/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_py3.py index b4191609e626..475cf4105ccc 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/mount_target_py3.py @@ -36,13 +36,13 @@ class MountTarget(Model): :type file_system_id: str :ivar ip_address: ipAddress. The mount target's IPv4 address :vartype ip_address: str - :param vlan_id: vlanid. Vlan Id - :type vlan_id: int + :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: startIp. The end of IPv4 address range to use when creating - a new mount target + :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 @@ -50,6 +50,9 @@ class MountTarget(Model): :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 """ @@ -72,15 +75,16 @@ class MountTarget(Model): 'mount_target_id': {'key': 'properties.mountTargetId', 'type': 'str'}, 'file_system_id': {'key': 'properties.fileSystemId', 'type': 'str'}, 'ip_address': {'key': 'properties.ipAddress', 'type': 'str'}, - 'vlan_id': {'key': 'properties.vlanId', 'type': 'int'}, + '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, vlan_id: int=None, start_ip: str=None, end_ip: str=None, gateway: str=None, netmask: str=None, **kwargs) -> None: + 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 @@ -89,9 +93,10 @@ def __init__(self, *, location: str, file_system_id: str, tags=None, vlan_id: in self.mount_target_id = None self.file_system_id = file_system_id self.ip_address = None - self.vlan_id = vlan_id + 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/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py index 3ec70dc97f92..1235eae41c38 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py @@ -32,6 +32,8 @@ class NetAppAccount(Model): :type tags: object :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str + :param active_directories: Active Directories + :type active_directories: ~azure.mgmt.netapp.models.ActiveDirectories """ _validation = { @@ -49,6 +51,7 @@ class NetAppAccount(Model): 'type': {'key': 'type', 'type': 'str'}, 'tags': {'key': 'tags', 'type': 'object'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': 'ActiveDirectories'}, } def __init__(self, **kwargs): @@ -59,3 +62,4 @@ def __init__(self, **kwargs): self.type = None self.tags = kwargs.get('tags', None) self.provisioning_state = None + self.active_directories = kwargs.get('active_directories', None) diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py index 33d4ec3da53c..769bbd473987 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py @@ -15,14 +15,48 @@ 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: ~azure.mgmt.netapp.models.ActiveDirectories """ + _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': 'ActiveDirectories'}, } 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/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py index d42966ff4105..0519b8afd318 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py @@ -15,14 +15,48 @@ 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: ~azure.mgmt.netapp.models.ActiveDirectories """ + _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': 'ActiveDirectories'}, } - def __init__(self, *, tags=None, **kwargs) -> None: + 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/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py index a2d9c5c845a0..1b1a8ba1055e 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py @@ -32,6 +32,8 @@ class NetAppAccount(Model): :type tags: object :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str + :param active_directories: Active Directories + :type active_directories: ~azure.mgmt.netapp.models.ActiveDirectories """ _validation = { @@ -49,9 +51,10 @@ class NetAppAccount(Model): 'type': {'key': 'type', 'type': 'str'}, 'tags': {'key': 'tags', 'type': 'object'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': 'ActiveDirectories'}, } - def __init__(self, *, location: str, tags=None, **kwargs) -> None: + def __init__(self, *, location: str, tags=None, active_directories=None, **kwargs) -> None: super(NetAppAccount, self).__init__(**kwargs) self.location = location self.id = None @@ -59,3 +62,4 @@ def __init__(self, *, location: str, tags=None, **kwargs) -> None: self.type = None self.tags = tags self.provisioning_state = None + self.active_directories = active_directories diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py index 2daa2c273f06..0f285eb5c27a 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py @@ -36,7 +36,7 @@ class Volume(Model): file path for the volume. Used when creating mount targets :type creation_token: str :param service_level: Required. serviceLevel. The service level of the - file system. Possible values include: 'Standard', 'Premium', 'Extreme'. + 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 @@ -44,6 +44,8 @@ class Volume(Model): Minimum size is 100 GiB. Upper limit is 100TiB. Default value: 107374182400 . :type usage_threshold: long + :param export_policy: Export policy rule + :type export_policy: ~azure.mgmt.netapp.models.ExportPolicyRule :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str :param subnet_id: The Azure Resource URI for a delegated subnet. Must have @@ -73,6 +75,7 @@ class Volume(Model): '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': 'ExportPolicyRule'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, } @@ -88,5 +91,6 @@ def __init__(self, **kwargs): 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.provisioning_state = None self.subnet_id = kwargs.get('subnet_id', None) diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py index a3b5a30bc492..982b8ac80857 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py @@ -29,7 +29,7 @@ class VolumePatch(Model): :param tags: Resource tags :type tags: object :param service_level: serviceLevel. The service level of the file system. - Possible values include: 'Standard', 'Premium', 'Extreme'. Default value: + 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 @@ -37,6 +37,8 @@ class VolumePatch(Model): Minimum size is 100 GiB. Upper limit is 100TiB. Default value: 107374182400 . :type usage_threshold: long + :param export_policy: Export policy rule + :type export_policy: ~azure.mgmt.netapp.models.ExportPolicyRule """ _validation = { @@ -54,6 +56,7 @@ class VolumePatch(Model): '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': 'ExportPolicyRule'}, } def __init__(self, **kwargs): @@ -65,3 +68,4 @@ def __init__(self, **kwargs): 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/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py index 7d1490e1ef01..132cfe5e5f7c 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py @@ -29,7 +29,7 @@ class VolumePatch(Model): :param tags: Resource tags :type tags: object :param service_level: serviceLevel. The service level of the file system. - Possible values include: 'Standard', 'Premium', 'Extreme'. Default value: + 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 @@ -37,6 +37,8 @@ class VolumePatch(Model): Minimum size is 100 GiB. Upper limit is 100TiB. Default value: 107374182400 . :type usage_threshold: long + :param export_policy: Export policy rule + :type export_policy: ~azure.mgmt.netapp.models.ExportPolicyRule """ _validation = { @@ -54,9 +56,10 @@ class VolumePatch(Model): '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': 'ExportPolicyRule'}, } - def __init__(self, *, location: str=None, tags=None, service_level="Premium", usage_threshold: int=107374182400, **kwargs) -> None: + 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 @@ -65,3 +68,4 @@ def __init__(self, *, location: str=None, tags=None, service_level="Premium", us self.tags = tags self.service_level = service_level self.usage_threshold = usage_threshold + self.export_policy = export_policy diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py index 4a282416271f..2813d8bc0738 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py @@ -36,7 +36,7 @@ class Volume(Model): file path for the volume. Used when creating mount targets :type creation_token: str :param service_level: Required. serviceLevel. The service level of the - file system. Possible values include: 'Standard', 'Premium', 'Extreme'. + 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 @@ -44,6 +44,8 @@ class Volume(Model): Minimum size is 100 GiB. Upper limit is 100TiB. Default value: 107374182400 . :type usage_threshold: long + :param export_policy: Export policy rule + :type export_policy: ~azure.mgmt.netapp.models.ExportPolicyRule :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str :param subnet_id: The Azure Resource URI for a delegated subnet. Must have @@ -73,11 +75,12 @@ class Volume(Model): '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': 'ExportPolicyRule'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, } - def __init__(self, *, location: str, creation_token: str, tags=None, service_level="Premium", usage_threshold: int=107374182400, subnet_id: str=None, **kwargs) -> None: + def __init__(self, *, location: str, creation_token: str, tags=None, service_level="Premium", usage_threshold: int=107374182400, export_policy=None, subnet_id: str=None, **kwargs) -> None: super(Volume, self).__init__(**kwargs) self.location = location self.id = None @@ -88,5 +91,6 @@ def __init__(self, *, location: str, creation_token: str, tags=None, service_lev self.creation_token = creation_token self.service_level = service_level self.usage_threshold = usage_threshold + self.export_policy = export_policy self.provisioning_state = None self.subnet_id = subnet_id diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py b/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py index da73c1444c8b..434999dd747c 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py @@ -167,9 +167,7 @@ def get( def _create_or_update_initial( - self, resource_group_name, account_name, location, tags=None, custom_headers=None, raw=False, **operation_config): - body = models.NetAppAccount(location=location, tags=tags) - + self, body, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config): # Construct URL url = self.create_or_update.metadata['url'] path_format_arguments = { @@ -216,17 +214,16 @@ def _create_or_update_initial( return deserialized def create_or_update( - self, resource_group_name, account_name, location, tags=None, custom_headers=None, raw=False, polling=True, **operation_config): + self, body, resource_group_name, account_name, custom_headers=None, raw=False, polling=True, **operation_config): """Create or update a NetApp account. + :param body: NetApp Account object supplied in the body of the + operation. + :type body: ~azure.mgmt.netapp.models.NetAppAccount :param resource_group_name: The name of the resource group. :type resource_group_name: str :param account_name: The name of the NetApp account :type account_name: str - :param location: Resource location - :type location: str - :param tags: Resource tags - :type tags: object :param dict custom_headers: headers that will be added to the request :param bool raw: The poller return type is ClientRawResponse, the direct response alongside the deserialized response @@ -242,10 +239,9 @@ def create_or_update( :class:`ErrorException` """ raw_result = self._create_or_update_initial( + body=body, resource_group_name=resource_group_name, account_name=account_name, - location=location, - tags=tags, custom_headers=custom_headers, raw=True, **operation_config @@ -348,15 +344,16 @@ def get_long_running_output(response): delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}'} def update( - self, resource_group_name, account_name, tags=None, custom_headers=None, raw=False, **operation_config): + self, body, resource_group_name, account_name, custom_headers=None, raw=False, **operation_config): """Patch a NetApp account. + :param body: NetApp Account object supplied in the body of the + operation. + :type body: ~azure.mgmt.netapp.models.NetAppAccountPatch :param resource_group_name: The name of the resource group. :type resource_group_name: str :param account_name: The name of the NetApp account :type account_name: str - :param tags: Resource tags - :type tags: object :param dict custom_headers: headers that will be added to the request :param bool raw: returns the direct response alongside the deserialized response @@ -368,8 +365,6 @@ def update( :raises: :class:`ErrorException` """ - body = models.NetAppAccountPatch(tags=tags) - # Construct URL url = self.update.metadata['url'] path_format_arguments = { diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/operations/pools_operations.py b/azure-mgmt-netapp/azure/mgmt/netapp/operations/pools_operations.py index 9a523a657aa4..d59181bddf03 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/operations/pools_operations.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/operations/pools_operations.py @@ -278,17 +278,18 @@ def get_long_running_output(response): create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/capacityPools/{poolName}'} def update( - self, resource_group_name, account_name, pool_name, tags=None, custom_headers=None, raw=False, **operation_config): + self, body, resource_group_name, account_name, pool_name, custom_headers=None, raw=False, **operation_config): """Patch a capacity pool. + :param body: Capacity pool object supplied in the body of the + operation. + :type body: ~azure.mgmt.netapp.models.CapacityPoolPatch :param resource_group_name: The name of the resource group. :type resource_group_name: str :param account_name: The name of the NetApp account :type account_name: str :param pool_name: The name of the capacity pool :type pool_name: str - :param tags: Resource tags - :type tags: object :param dict custom_headers: headers that will be added to the request :param bool raw: returns the direct response alongside the deserialized response @@ -300,8 +301,6 @@ def update( :raises: :class:`ErrorException` """ - body = models.CapacityPoolPatch(tags=tags) - # Construct URL url = self.update.metadata['url'] path_format_arguments = { diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/operations/snapshots_operations.py b/azure-mgmt-netapp/azure/mgmt/netapp/operations/snapshots_operations.py index 1b003e85a6d2..9a05eba64e60 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/operations/snapshots_operations.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/operations/snapshots_operations.py @@ -404,7 +404,7 @@ def _delete_initial( request = self._client.delete(url, query_parameters, header_parameters) response = self._client.send(request, stream=False, **operation_config) - if response.status_code not in [202, 204]: + if response.status_code not in [200, 202, 204]: raise models.ErrorException(self._deserialize, response) if raw: diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/version.py b/azure-mgmt-netapp/azure/mgmt/netapp/version.py index c995f7836cef..a39916c162ce 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/version.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/version.py @@ -9,4 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "0.2.0" +VERSION = "1.0.0" + From 765af34292e6ff36e7f009976356ca065610a74e Mon Sep 17 00:00:00 2001 From: Azure SDK for Python bot Date: Fri, 22 Mar 2019 10:24:44 -0700 Subject: [PATCH 2/5] Generated from c219e4e969a6443efa588eadc8ed77f611baa53e (#4638) Merge pull request #15 from leonardbf/NFSAAS-1875-correction NFSAAS-1875 small correction --- .../azure/mgmt/netapp/models/__init__.py | 12 ++++++-- ...ive_directories.py => active_directory.py} | 6 ++-- ...ctories_py3.py => active_directory_py3.py} | 6 ++-- .../mgmt/netapp/models/net_app_account.py | 4 +-- .../netapp/models/net_app_account_patch.py | 4 +-- .../models/net_app_account_patch_py3.py | 4 +-- .../mgmt/netapp/models/net_app_account_py3.py | 4 +-- .../azure/mgmt/netapp/models/volume.py | 5 ++-- .../azure/mgmt/netapp/models/volume_patch.py | 5 ++-- .../volume_patch_properties_export_policy.py | 28 +++++++++++++++++++ ...lume_patch_properties_export_policy_py3.py | 28 +++++++++++++++++++ .../mgmt/netapp/models/volume_patch_py3.py | 5 ++-- .../models/volume_properties_export_policy.py | 28 +++++++++++++++++++ .../volume_properties_export_policy_py3.py | 28 +++++++++++++++++++ .../azure/mgmt/netapp/models/volume_py3.py | 5 ++-- .../netapp/operations/accounts_operations.py | 4 ++- 16 files changed, 150 insertions(+), 26 deletions(-) rename azure-mgmt-netapp/azure/mgmt/netapp/models/{active_directories.py => active_directory.py} (95%) rename azure-mgmt-netapp/azure/mgmt/netapp/models/{active_directories_py3.py => active_directory_py3.py} (95%) create mode 100644 azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy.py create mode 100644 azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy_py3.py create mode 100644 azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy.py create mode 100644 azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy_py3.py diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py index b584ed1dbfaf..68d7454c57bc 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/__init__.py @@ -15,13 +15,15 @@ from .metric_specification_py3 import MetricSpecification from .service_specification_py3 import ServiceSpecification from .operation_py3 import Operation - from .active_directories_py3 import ActiveDirectories + 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 @@ -33,13 +35,15 @@ from .metric_specification import MetricSpecification from .service_specification import ServiceSpecification from .operation import Operation - from .active_directories import ActiveDirectories + 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 @@ -61,13 +65,15 @@ 'MetricSpecification', 'ServiceSpecification', 'Operation', - 'ActiveDirectories', + 'ActiveDirectory', 'NetAppAccount', 'NetAppAccountPatch', 'CapacityPool', 'CapacityPoolPatch', 'ExportPolicyRule', + 'VolumePropertiesExportPolicy', 'Volume', + 'VolumePatchPropertiesExportPolicy', 'VolumePatch', 'MountTarget', 'Snapshot', diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory.py similarity index 95% rename from azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories.py rename to azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory.py index e5c45d425629..42659ca6f112 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory.py @@ -12,8 +12,8 @@ from msrest.serialization import Model -class ActiveDirectories(Model): - """Active Directories. +class ActiveDirectory(Model): + """Active Directory. :param active_directory_id: Id of the Active Directory :type active_directory_id: str @@ -49,7 +49,7 @@ class ActiveDirectories(Model): } def __init__(self, **kwargs): - super(ActiveDirectories, self).__init__(**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) diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory_py3.py similarity index 95% rename from azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories_py3.py rename to azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory_py3.py index b128e58daca0..7eec5dc63985 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directories_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/active_directory_py3.py @@ -12,8 +12,8 @@ from msrest.serialization import Model -class ActiveDirectories(Model): - """Active Directories. +class ActiveDirectory(Model): + """Active Directory. :param active_directory_id: Id of the Active Directory :type active_directory_id: str @@ -49,7 +49,7 @@ class ActiveDirectories(Model): } def __init__(self, *, active_directory_id: str=None, username: str=None, password: str=None, domain: str=None, d_ns: str=None, status: str=None, s_mb_server_name: str=None, organizational_unit: str=None, **kwargs) -> None: - super(ActiveDirectories, self).__init__(**kwargs) + super(ActiveDirectory, self).__init__(**kwargs) self.active_directory_id = active_directory_id self.username = username self.password = password diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py index 1235eae41c38..3f15012da98e 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account.py @@ -33,7 +33,7 @@ class NetAppAccount(Model): :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str :param active_directories: Active Directories - :type active_directories: ~azure.mgmt.netapp.models.ActiveDirectories + :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] """ _validation = { @@ -51,7 +51,7 @@ class NetAppAccount(Model): 'type': {'key': 'type', 'type': 'str'}, 'tags': {'key': 'tags', 'type': 'object'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'active_directories': {'key': 'properties.activeDirectories', 'type': 'ActiveDirectories'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, } def __init__(self, **kwargs): diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py index 769bbd473987..1e8f35b91a4c 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch.py @@ -31,7 +31,7 @@ class NetAppAccountPatch(Model): :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str :param active_directories: Active Directories - :type active_directories: ~azure.mgmt.netapp.models.ActiveDirectories + :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] """ _validation = { @@ -48,7 +48,7 @@ class NetAppAccountPatch(Model): 'type': {'key': 'type', 'type': 'str'}, 'tags': {'key': 'tags', 'type': 'object'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'active_directories': {'key': 'properties.activeDirectories', 'type': 'ActiveDirectories'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, } def __init__(self, **kwargs): diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py index 0519b8afd318..982ff8975584 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_patch_py3.py @@ -31,7 +31,7 @@ class NetAppAccountPatch(Model): :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str :param active_directories: Active Directories - :type active_directories: ~azure.mgmt.netapp.models.ActiveDirectories + :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] """ _validation = { @@ -48,7 +48,7 @@ class NetAppAccountPatch(Model): 'type': {'key': 'type', 'type': 'str'}, 'tags': {'key': 'tags', 'type': 'object'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'active_directories': {'key': 'properties.activeDirectories', 'type': 'ActiveDirectories'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, } def __init__(self, *, location: str=None, tags=None, active_directories=None, **kwargs) -> None: diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py index 1b1a8ba1055e..72e53303d3fa 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/net_app_account_py3.py @@ -33,7 +33,7 @@ class NetAppAccount(Model): :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str :param active_directories: Active Directories - :type active_directories: ~azure.mgmt.netapp.models.ActiveDirectories + :type active_directories: list[~azure.mgmt.netapp.models.ActiveDirectory] """ _validation = { @@ -51,7 +51,7 @@ class NetAppAccount(Model): 'type': {'key': 'type', 'type': 'str'}, 'tags': {'key': 'tags', 'type': 'object'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, - 'active_directories': {'key': 'properties.activeDirectories', 'type': 'ActiveDirectories'}, + 'active_directories': {'key': 'properties.activeDirectories', 'type': '[ActiveDirectory]'}, } def __init__(self, *, location: str, tags=None, active_directories=None, **kwargs) -> None: diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py index 0f285eb5c27a..5279982691c2 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume.py @@ -45,7 +45,8 @@ class Volume(Model): 107374182400 . :type usage_threshold: long :param export_policy: Export policy rule - :type export_policy: ~azure.mgmt.netapp.models.ExportPolicyRule + :type export_policy: + ~azure.mgmt.netapp.models.VolumePropertiesExportPolicy :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str :param subnet_id: The Azure Resource URI for a delegated subnet. Must have @@ -75,7 +76,7 @@ class Volume(Model): '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': 'ExportPolicyRule'}, + 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePropertiesExportPolicy'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, } diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py index 982b8ac80857..0e9123a7ff17 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch.py @@ -38,7 +38,8 @@ class VolumePatch(Model): 107374182400 . :type usage_threshold: long :param export_policy: Export policy rule - :type export_policy: ~azure.mgmt.netapp.models.ExportPolicyRule + :type export_policy: + ~azure.mgmt.netapp.models.VolumePatchPropertiesExportPolicy """ _validation = { @@ -56,7 +57,7 @@ class VolumePatch(Model): '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': 'ExportPolicyRule'}, + 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePatchPropertiesExportPolicy'}, } def __init__(self, **kwargs): diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy.py new file mode 100644 index 000000000000..f516e7bcb974 --- /dev/null +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy.py @@ -0,0 +1,28 @@ +# 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): + """Export policy rule. + + :param rules: + :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/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy_py3.py new file mode 100644 index 000000000000..86dfd5a9d289 --- /dev/null +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_properties_export_policy_py3.py @@ -0,0 +1,28 @@ +# 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): + """Export policy rule. + + :param rules: + :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/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py index 132cfe5e5f7c..8cfb155329aa 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_patch_py3.py @@ -38,7 +38,8 @@ class VolumePatch(Model): 107374182400 . :type usage_threshold: long :param export_policy: Export policy rule - :type export_policy: ~azure.mgmt.netapp.models.ExportPolicyRule + :type export_policy: + ~azure.mgmt.netapp.models.VolumePatchPropertiesExportPolicy """ _validation = { @@ -56,7 +57,7 @@ class VolumePatch(Model): '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': 'ExportPolicyRule'}, + '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: diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy.py new file mode 100644 index 000000000000..836f7dd0fd6b --- /dev/null +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy.py @@ -0,0 +1,28 @@ +# 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): + """Export policy rule. + + :param rules: + :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/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy_py3.py new file mode 100644 index 000000000000..ae2dfcd88d26 --- /dev/null +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_properties_export_policy_py3.py @@ -0,0 +1,28 @@ +# 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): + """Export policy rule. + + :param rules: + :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/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py index 2813d8bc0738..2691ac8b6e01 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/models/volume_py3.py @@ -45,7 +45,8 @@ class Volume(Model): 107374182400 . :type usage_threshold: long :param export_policy: Export policy rule - :type export_policy: ~azure.mgmt.netapp.models.ExportPolicyRule + :type export_policy: + ~azure.mgmt.netapp.models.VolumePropertiesExportPolicy :ivar provisioning_state: Azure lifecycle management :vartype provisioning_state: str :param subnet_id: The Azure Resource URI for a delegated subnet. Must have @@ -75,7 +76,7 @@ class Volume(Model): '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': 'ExportPolicyRule'}, + 'export_policy': {'key': 'properties.exportPolicy', 'type': 'VolumePropertiesExportPolicy'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, 'subnet_id': {'key': 'properties.subnetId', 'type': 'str'}, } diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py b/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py index 434999dd747c..29e4bc756c29 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/operations/accounts_operations.py @@ -199,11 +199,13 @@ def _create_or_update_initial( request = self._client.put(url, query_parameters, header_parameters, body_content) response = self._client.send(request, stream=False, **operation_config) - if response.status_code not in [201, 202]: + if response.status_code not in [200, 201, 202]: raise models.ErrorException(self._deserialize, response) deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('NetAppAccount', response) if response.status_code == 201: deserialized = self._deserialize('NetAppAccount', response) From aa65abe99c1930e546fe15307270f0c970fb9bd3 Mon Sep 17 00:00:00 2001 From: Isabella Cai Date: Mon, 25 Mar 2019 13:58:09 -0700 Subject: [PATCH 3/5] updated versioning and change log --- azure-mgmt-netapp/HISTORY.rst | 21 +++++++++++++++++++ .../azure/mgmt/netapp/version.py | 3 +-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/azure-mgmt-netapp/HISTORY.rst b/azure-mgmt-netapp/HISTORY.rst index 3ccaa03c1cd0..dcb1f3e64700 100644 --- a/azure-mgmt-netapp/HISTORY.rst +++ b/azure-mgmt-netapp/HISTORY.rst @@ -3,6 +3,27 @@ Release History =============== +0.3.0 (2019-03-25) +++++++++++++++++++ + +**Features** + +- Model VolumePatch has a new parameter export_policy +- Model NetAppAccount has a new parameter active_directories +- Model Volume has a new parameter export_policy +- Model MountTarget has a new parameter smb_server_fqdn +- Model MountTarget has a new parameter subnet + +**Breaking changes** + +- Operation PoolsOperations.update has a new signature +- Operation PoolsOperations.update has a new signature +- Model MountTarget no longer has parameter vlan_id +- Operation AccountsOperations.update has a new signature +- Operation AccountsOperations.create_or_update has a new signature +- Model CapacityPoolPatch has a new signature +- Model NetAppAccountPatch has a new signature + 0.2.0 (2019-03-04) ++++++++++++++++++ diff --git a/azure-mgmt-netapp/azure/mgmt/netapp/version.py b/azure-mgmt-netapp/azure/mgmt/netapp/version.py index a39916c162ce..fcb88654af0a 100644 --- a/azure-mgmt-netapp/azure/mgmt/netapp/version.py +++ b/azure-mgmt-netapp/azure/mgmt/netapp/version.py @@ -9,5 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "1.0.0" - +VERSION = "0.3.0" From 2320de250ce9d67a8da685c5bcc6a77144c498b1 Mon Sep 17 00:00:00 2001 From: Leonard Francis Date: Tue, 26 Mar 2019 18:31:35 +0000 Subject: [PATCH 4/5] NFSAAS-2236 update python SDK tests for R3.5 (#4684) --- ...st_account.test_create_delete_account.yaml | 76 +-- ...test_account.test_get_account_by_name.yaml | 76 +-- .../test_account.test_list_accounts.yaml | 140 +++-- .../test_account.test_patch_account.yaml | 80 +-- ...st_mounttarget.test_list_mount_target.yaml | 314 +++++++---- .../test_pool.test_create_delete_pool.yaml | 138 +++-- .../test_pool.test_get_pool_by_name.yaml | 134 +++-- .../recordings/test_pool.test_list_pools.yaml | 202 ++++--- .../recordings/test_pool.test_patch_pool.yaml | 145 +++-- .../test_pool.test_update_pool.yaml | 142 +++-- ..._snapshot.test_create_delete_snapshot.yaml | 382 +++++++------ ...st_snapshot.test_get_snapshot_by_name.yaml | 361 ++++++------ .../test_snapshot.test_list_snapshots.yaml | 431 +++++++-------- ...volume.test_create_delete_list_volume.yaml | 310 +++++++---- .../test_volume.test_get_volume_by_name.yaml | 339 ++++++++---- .../test_volume.test_list_volumes.yaml | 520 ++++++++++++++---- .../test_volume.test_patch_volume.yaml | 320 +++++++---- .../test_volume.test_update_volume.yaml | 322 ++++++++--- azure-mgmt-netapp/tests/test_account.py | 12 +- azure-mgmt-netapp/tests/test_pool.py | 6 +- 20 files changed, 2796 insertions(+), 1654 deletions(-) diff --git a/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml b/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml index 35bc795eb404..054af2dee466 100644 --- a/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_account.test_create_delete_account.yaml @@ -8,21 +8,23 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A04%3A11.9124888Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A15%3A16.8301481Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a21905ed-4aef-4d41-b046-77003d3adc2b?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b34d62a-6536-47d9-b7db-359ef36168e4?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:04:12 GMT'] - etag: [W/"datetime'2019-02-05T15%3A04%3A11.9124888Z'"] + date: ['Tue, 26 Mar 2019 10:15:17 GMT'] + etag: [W/"datetime'2019-03-26T10%3A15%3A16.8301481Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a21905ed-4aef-4d41-b046-77003d3adc2b?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b34d62a-6536-47d9-b7db-359ef36168e4?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a21905ed-4aef-4d41-b046-77003d3adc2b","name":"a21905ed-4aef-4d41-b046-77003d3adc2b","status":"Succeeded","startTime":"2019-02-05T15:04:11.8713267Z","endTime":"2019-02-05T15:04:12.1403122Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b34d62a-6536-47d9-b7db-359ef36168e4","name":"1b34d62a-6536-47d9-b7db-359ef36168e4","status":"Succeeded","startTime":"2019-03-26T10:15:16.6620955Z","endTime":"2019-03-26T10:15:17.0758481Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:04:43 GMT'] + date: ['Tue, 26 Mar 2019 10:15:48 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] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A04%3A12.2116996Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A15%3A17.1413722Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:04:45 GMT'] - etag: [W/"datetime'2019-02-05T15%3A04%3A12.2116996Z'"] + date: ['Tue, 26 Mar 2019 10:15:49 GMT'] + etag: [W/"datetime'2019-03-26T10%3A15%3A17.1413722Z'"] 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] @@ -89,19 +95,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A04%3A12.2116996Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A15%3A17.1413722Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['359'] + content-length: ['387'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:04:46 GMT'] + date: ['Tue, 26 Mar 2019 10:15:51 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] @@ -117,24 +125,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/568b35fb-e657-4b7c-8d94-95f2b51c3b5e?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63cc54db-dbdd-4f52-8f92-c88c13178ee2?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:04:47 GMT'] + date: ['Tue, 26 Mar 2019 10:15:52 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/568b35fb-e657-4b7c-8d94-95f2b51c3b5e?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63cc54db-dbdd-4f52-8f92-c88c13178ee2?api-version=2017-08-15&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: ['14995'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -144,18 +154,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/568b35fb-e657-4b7c-8d94-95f2b51c3b5e?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63cc54db-dbdd-4f52-8f92-c88c13178ee2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/568b35fb-e657-4b7c-8d94-95f2b51c3b5e","name":"568b35fb-e657-4b7c-8d94-95f2b51c3b5e","status":"Succeeded","startTime":"2019-02-05T15:04:47.9675829Z","endTime":"2019-02-05T15:04:48.0326338Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/63cc54db-dbdd-4f52-8f92-c88c13178ee2","name":"63cc54db-dbdd-4f52-8f92-c88c13178ee2","status":"Succeeded","startTime":"2019-03-26T10:15:53.3616289Z","endTime":"2019-03-26T10:15:53.4396881Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:05:19 GMT'] + date: ['Tue, 26 Mar 2019 10:16:25 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] @@ -170,7 +182,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -182,7 +194,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:05:22 GMT'] + date: ['Tue, 26 Mar 2019 10:16:29 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -196,7 +208,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2017-08-15 @@ -206,7 +218,7 @@ interactions: cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:05:22 GMT'] + date: ['Tue, 26 Mar 2019 10:16:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml b/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml index ca82345db3ad..c19adc71dccb 100644 --- a/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_account.test_get_account_by_name.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A05%3A26.7745457Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A16%3A36.799451Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4588e120-cf9d-443f-8e89-9682b5139d11?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508b7f39-9af3-4752-85b5-7dbcd216ac39?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['373'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:05:27 GMT'] - etag: [W/"datetime'2019-02-05T15%3A05%3A26.7745457Z'"] + date: ['Tue, 26 Mar 2019 10:16:37 GMT'] + etag: [W/"datetime'2019-03-26T10%3A16%3A36.799451Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4588e120-cf9d-443f-8e89-9682b5139d11?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508b7f39-9af3-4752-85b5-7dbcd216ac39?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4588e120-cf9d-443f-8e89-9682b5139d11","name":"4588e120-cf9d-443f-8e89-9682b5139d11","status":"Succeeded","startTime":"2019-02-05T15:05:26.7231865Z","endTime":"2019-02-05T15:05:26.9996811Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/508b7f39-9af3-4752-85b5-7dbcd216ac39","name":"508b7f39-9af3-4752-85b5-7dbcd216ac39","status":"Succeeded","startTime":"2019-03-26T10:16:36.7412164Z","endTime":"2019-03-26T10:16:37.0358569Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:05:58 GMT'] + date: ['Tue, 26 Mar 2019 10:17:09 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A05%3A27.0537441Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A16%3A37.0876582Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:06:01 GMT'] - etag: [W/"datetime'2019-02-05T15%3A05%3A27.0537441Z'"] + date: ['Tue, 26 Mar 2019 10:17:12 GMT'] + etag: [W/"datetime'2019-03-26T10%3A16%3A37.0876582Z'"] 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] @@ -89,20 +95,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A05%3A27.0537441Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A16%3A37.0876582Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:06:02 GMT'] - etag: [W/"datetime'2019-02-05T15%3A05%3A27.0537441Z'"] + date: ['Tue, 26 Mar 2019 10:17:15 GMT'] + etag: [W/"datetime'2019-03-26T10%3A16%3A37.0876582Z'"] 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] @@ -118,24 +126,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a2410ca-8d1d-421e-a4c1-4fdf7268bfba?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c292168-10fb-4676-8b1d-185baf4204b1?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:06:04 GMT'] + date: ['Tue, 26 Mar 2019 10:17:18 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a2410ca-8d1d-421e-a4c1-4fdf7268bfba?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c292168-10fb-4676-8b1d-185baf4204b1?api-version=2017-08-15&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: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -145,18 +155,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a2410ca-8d1d-421e-a4c1-4fdf7268bfba?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c292168-10fb-4676-8b1d-185baf4204b1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a2410ca-8d1d-421e-a4c1-4fdf7268bfba","name":"2a2410ca-8d1d-421e-a4c1-4fdf7268bfba","status":"Succeeded","startTime":"2019-02-05T15:06:04.5255212Z","endTime":"2019-02-05T15:06:04.6025284Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7c292168-10fb-4676-8b1d-185baf4204b1","name":"7c292168-10fb-4676-8b1d-185baf4204b1","status":"Succeeded","startTime":"2019-03-26T10:17:18.4135555Z","endTime":"2019-03-26T10:17:18.5385726Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:06:35 GMT'] + date: ['Tue, 26 Mar 2019 10:17:49 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] @@ -171,7 +183,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -183,7 +195,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:06:39 GMT'] + date: ['Tue, 26 Mar 2019 10:17:53 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml b/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml index 2526d135f6aa..2b6a86a549bc 100644 --- a/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_account.test_list_accounts.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A06%3A43.3308986Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A17%3A57.0869787Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25409df5-dca3-4775-a0b7-ac7080493b05?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aaeb64ff-5698-43b7-b632-fcfeb5990b5e?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:06:43 GMT'] - etag: [W/"datetime'2019-02-05T15%3A06%3A43.3308986Z'"] + date: ['Tue, 26 Mar 2019 10:17:56 GMT'] + etag: [W/"datetime'2019-03-26T10%3A17%3A57.0869787Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25409df5-dca3-4775-a0b7-ac7080493b05?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aaeb64ff-5698-43b7-b632-fcfeb5990b5e?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/25409df5-dca3-4775-a0b7-ac7080493b05","name":"25409df5-dca3-4775-a0b7-ac7080493b05","status":"Succeeded","startTime":"2019-02-05T15:06:43.2813653Z","endTime":"2019-02-05T15:06:43.5614589Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aaeb64ff-5698-43b7-b632-fcfeb5990b5e","name":"aaeb64ff-5698-43b7-b632-fcfeb5990b5e","status":"Succeeded","startTime":"2019-03-26T10:17:57.0143766Z","endTime":"2019-03-26T10:17:57.2956801Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:07:15 GMT'] + date: ['Tue, 26 Mar 2019 10:18:29 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A06%3A43.6110982Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A17%3A57.3461637Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:07:16 GMT'] - etag: [W/"datetime'2019-02-05T15%3A06%3A43.6110982Z'"] + date: ['Tue, 26 Mar 2019 10:18:31 GMT'] + etag: [W/"datetime'2019-03-26T10%3A17%3A57.3461637Z'"] 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] @@ -91,25 +97,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A07%3A20.4152245Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A18%3A35.8147284Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-2"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/452d69c5-b5b8-448b-a111-4100d0feaf4b?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36737827-3a9b-4aee-8f9e-8bb0619dac78?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:07:20 GMT'] - etag: [W/"datetime'2019-02-05T15%3A07%3A20.4152245Z'"] + date: ['Tue, 26 Mar 2019 10:18:36 GMT'] + etag: [W/"datetime'2019-03-26T10%3A18%3A35.8147284Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -119,18 +127,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/452d69c5-b5b8-448b-a111-4100d0feaf4b?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36737827-3a9b-4aee-8f9e-8bb0619dac78?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/452d69c5-b5b8-448b-a111-4100d0feaf4b","name":"452d69c5-b5b8-448b-a111-4100d0feaf4b","status":"Succeeded","startTime":"2019-02-05T15:07:20.3725855Z","endTime":"2019-02-05T15:07:20.6395525Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36737827-3a9b-4aee-8f9e-8bb0619dac78","name":"36737827-3a9b-4aee-8f9e-8bb0619dac78","status":"Succeeded","startTime":"2019-03-26T10:18:35.7556741Z","endTime":"2019-03-26T10:18:36.0368669Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:07:52 GMT'] + date: ['Tue, 26 Mar 2019 10:19:07 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] @@ -145,19 +155,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A07%3A20.6854164Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A18%3A36.0889242Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-2"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:07:53 GMT'] - etag: [W/"datetime'2019-02-05T15%3A07%3A20.6854164Z'"] + date: ['Tue, 26 Mar 2019 10:19:09 GMT'] + etag: [W/"datetime'2019-03-26T10%3A18%3A36.0889242Z'"] 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] @@ -172,19 +184,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A06%3A43.6110982Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A07%3A20.6854164Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A17%3A57.3461637Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2","name":"sdk-py-tests-acc-2","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A18%3A36.0889242Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-2"}}]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['707'] + content-length: ['763'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:07:54 GMT'] + date: ['Tue, 26 Mar 2019 10:19:10 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -200,24 +214,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/26ee21b2-9fef-4531-a547-a7058739c57c?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbd43a37-ae04-4e7f-b032-36304ad5f947?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:07:56 GMT'] + date: ['Tue, 26 Mar 2019 10:19:14 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/26ee21b2-9fef-4531-a547-a7058739c57c?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbd43a37-ae04-4e7f-b032-36304ad5f947?api-version=2017-08-15&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: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -227,18 +243,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/26ee21b2-9fef-4531-a547-a7058739c57c?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbd43a37-ae04-4e7f-b032-36304ad5f947?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/26ee21b2-9fef-4531-a547-a7058739c57c","name":"26ee21b2-9fef-4531-a547-a7058739c57c","status":"Succeeded","startTime":"2019-02-05T15:07:56.0298468Z","endTime":"2019-02-05T15:07:56.105842Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cbd43a37-ae04-4e7f-b032-36304ad5f947","name":"cbd43a37-ae04-4e7f-b032-36304ad5f947","status":"Succeeded","startTime":"2019-03-26T10:19:14.2373146Z","endTime":"2019-03-26T10:19:14.3311098Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['509'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:08:27 GMT'] + date: ['Tue, 26 Mar 2019 10:19:45 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] @@ -253,7 +271,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -265,7 +283,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:08:29 GMT'] + date: ['Tue, 26 Mar 2019 10:19:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -280,24 +298,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e303ec4-33a3-426d-b366-bd489b1f2c09?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5996af12-d29a-48a2-890a-cec85e73a344?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:08:30 GMT'] + date: ['Tue, 26 Mar 2019 10:19:51 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e303ec4-33a3-426d-b366-bd489b1f2c09?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5996af12-d29a-48a2-890a-cec85e73a344?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -307,18 +327,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e303ec4-33a3-426d-b366-bd489b1f2c09?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5996af12-d29a-48a2-890a-cec85e73a344?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e303ec4-33a3-426d-b366-bd489b1f2c09","name":"8e303ec4-33a3-426d-b366-bd489b1f2c09","status":"Succeeded","startTime":"2019-02-05T15:08:31.2404928Z","endTime":"2019-02-05T15:08:31.3006366Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5996af12-d29a-48a2-890a-cec85e73a344","name":"5996af12-d29a-48a2-890a-cec85e73a344","status":"Succeeded","startTime":"2019-03-26T10:19:51.6027113Z","endTime":"2019-03-26T10:19:51.6964912Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:09:02 GMT'] + date: ['Tue, 26 Mar 2019 10:20:23 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] @@ -333,7 +355,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-2?api-version=2017-08-15 @@ -345,7 +367,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:09:05 GMT'] + date: ['Tue, 26 Mar 2019 10:20:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml b/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml index b92086d0f0aa..fc38a39fad7c 100644 --- a/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_account.test_patch_account.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A09%3A10.3522826Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A20%3A29.9945413Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3da4f888-0a43-48b3-a389-097f68a2c42e?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b210054-4d13-4d33-a7e5-0cfcc8b0a02f?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:09:10 GMT'] - etag: [W/"datetime'2019-02-05T15%3A09%3A10.3522826Z'"] + date: ['Tue, 26 Mar 2019 10:20:29 GMT'] + etag: [W/"datetime'2019-03-26T10%3A20%3A29.9945413Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3da4f888-0a43-48b3-a389-097f68a2c42e?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b210054-4d13-4d33-a7e5-0cfcc8b0a02f?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3da4f888-0a43-48b3-a389-097f68a2c42e","name":"3da4f888-0a43-48b3-a389-097f68a2c42e","status":"Succeeded","startTime":"2019-02-05T15:09:10.308672Z","endTime":"2019-02-05T15:09:10.5744051Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b210054-4d13-4d33-a7e5-0cfcc8b0a02f","name":"8b210054-4d13-4d33-a7e5-0cfcc8b0a02f","status":"Succeeded","startTime":"2019-03-26T10:20:29.9311963Z","endTime":"2019-03-26T10:20:30.2281003Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['509'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:09:41 GMT'] + date: ['Tue, 26 Mar 2019 10:21:02 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A09%3A10.620473Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A20%3A30.279745Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:09:42 GMT'] - etag: [W/"datetime'2019-02-05T15%3A09%3A10.620473Z'"] + date: ['Tue, 26 Mar 2019 10:21:04 GMT'] + etag: [W/"datetime'2019-03-26T10%3A20%3A30.279745Z'"] 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] @@ -91,20 +97,22 @@ interactions: Content-Length: ['28'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A09%3A45.1299715Z''\"","location":"westus2","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A21%3A10.08014Z''\"","location":"westus2","tags":{"Tag1":"Value2"},"properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['372'] + content-length: ['398'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:09:45 GMT'] - etag: [W/"datetime'2019-02-05T15%3A09%3A45.1299715Z'"] + date: ['Tue, 26 Mar 2019 10:21:10 GMT'] + etag: [W/"datetime'2019-03-26T10%3A21%3A10.08014Z'"] 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] @@ -121,24 +129,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de85ce47-b8fc-442a-b6ec-afa9578d4477?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bd92505e-a6ed-4e55-a664-7034d07e996d?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:09:48 GMT'] + date: ['Tue, 26 Mar 2019 10:21:13 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de85ce47-b8fc-442a-b6ec-afa9578d4477?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bd92505e-a6ed-4e55-a664-7034d07e996d?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -148,18 +158,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de85ce47-b8fc-442a-b6ec-afa9578d4477?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bd92505e-a6ed-4e55-a664-7034d07e996d?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/de85ce47-b8fc-442a-b6ec-afa9578d4477","name":"de85ce47-b8fc-442a-b6ec-afa9578d4477","status":"Succeeded","startTime":"2019-02-05T15:09:48.2292825Z","endTime":"2019-02-05T15:09:48.30528Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bd92505e-a6ed-4e55-a664-7034d07e996d","name":"bd92505e-a6ed-4e55-a664-7034d07e996d","status":"Succeeded","startTime":"2019-03-26T10:21:14.1300023Z","endTime":"2019-03-26T10:21:14.2081578Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['508'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:10:18 GMT'] + date: ['Tue, 26 Mar 2019 10:21:46 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] @@ -174,7 +186,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -186,7 +198,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:10:21 GMT'] + date: ['Tue, 26 Mar 2019 10:21:49 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_mounttarget.test_list_mount_target.yaml b/azure-mgmt-netapp/tests/recordings/test_mounttarget.test_list_mount_target.yaml index d31275abe474..38ea3c6c37bc 100644 --- a/azure-mgmt-netapp/tests/recordings/test_mounttarget.test_list_mount_target.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_mounttarget.test_list_mount_target.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A37%3A33.9929844Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A45%3A23.4774167Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ace5fd5-b73e-4b5d-a240-8aeafc915083?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f7202651-00b6-4666-8ada-3f76d65216fa?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:37:34 GMT'] - etag: [W/"datetime'2019-02-05T14%3A37%3A33.9929844Z'"] + date: ['Tue, 26 Mar 2019 10:45:24 GMT'] + etag: [W/"datetime'2019-03-26T10%3A45%3A23.4774167Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ace5fd5-b73e-4b5d-a240-8aeafc915083?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f7202651-00b6-4666-8ada-3f76d65216fa?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2ace5fd5-b73e-4b5d-a240-8aeafc915083","name":"2ace5fd5-b73e-4b5d-a240-8aeafc915083","status":"Succeeded","startTime":"2019-02-05T14:37:33.9387063Z","endTime":"2019-02-05T14:37:34.2240221Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f7202651-00b6-4666-8ada-3f76d65216fa","name":"f7202651-00b6-4666-8ada-3f76d65216fa","status":"Succeeded","startTime":"2019-03-26T10:45:23.3662Z","endTime":"2019-03-26T10:45:23.7024105Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['510'] + content-length: ['507'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:38:05 GMT'] + date: ['Tue, 26 Mar 2019 10:45:54 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] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A37%3A34.2751853Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A45%3A23.7526127Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:38:06 GMT'] - etag: [W/"datetime'2019-02-05T14%3A37%3A34.2751853Z'"] + date: ['Tue, 26 Mar 2019 10:45:56 GMT'] + etag: [W/"datetime'2019-03-26T10%3A45%3A23.7526127Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A38%3A10.2937592Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A46%3A00.2836368Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8ff80c7-c8d9-465a-9ea4-1027734c0c34?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20ddebfb-553b-416c-b57b-baf7450becde?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:38:10 GMT'] - etag: [W/"datetime'2019-02-05T14%3A38%3A10.2937592Z'"] + date: ['Tue, 26 Mar 2019 10:46:00 GMT'] + etag: [W/"datetime'2019-03-26T10%3A46%3A00.2836368Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8ff80c7-c8d9-465a-9ea4-1027734c0c34?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20ddebfb-553b-416c-b57b-baf7450becde?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a8ff80c7-c8d9-465a-9ea4-1027734c0c34","name":"a8ff80c7-c8d9-465a-9ea4-1027734c0c34","status":"Succeeded","startTime":"2019-02-05T14:38:10.2374188Z","endTime":"2019-02-05T14:38:10.7313706Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/20ddebfb-553b-416c-b57b-baf7450becde","name":"20ddebfb-553b-416c-b57b-baf7450becde","status":"Succeeded","startTime":"2019-03-26T10:46:00.2190716Z","endTime":"2019-03-26T10:46:00.6096751Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:38:42 GMT'] + date: ['Tue, 26 Mar 2019 10:46: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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A38%3A10.7801053Z''\"","location":"westus2","properties":{"poolId":"64ab19cb-bf53-14a5-2114-507fe7481f92","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A46%3A00.6649088Z''\"","location":"westus2","properties":{"poolId":"824be42d-ce7d-aa7a-f7a0-e371e9bfcc2e","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:38:43 GMT'] - etag: [W/"datetime'2019-02-05T14%3A38%3A10.7801053Z'"] + date: ['Tue, 26 Mar 2019 10:46:35 GMT'] + etag: [W/"datetime'2019-03-26T10%3A46%3A00.6649088Z'"] 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] @@ -179,21 +191,23 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A38%3A57.5983474Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T10%3A46%3A51.165018Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/574053bb-472c-43a3-9b50-8427c2f24d35?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['737'] + content-length: ['736'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:38:58 GMT'] - etag: [W/"datetime'2019-02-05T14%3A38%3A57.5983474Z'"] + date: ['Tue, 26 Mar 2019 10:46:51 GMT'] + etag: [W/"datetime'2019-03-26T10%3A46%3A51.165018Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -207,18 +221,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/574053bb-472c-43a3-9b50-8427c2f24d35?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/574053bb-472c-43a3-9b50-8427c2f24d35","name":"574053bb-472c-43a3-9b50-8427c2f24d35","status":"Creating","startTime":"2019-02-05T14:38:57.544724Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4","name":"2940a08c-1412-4496-bdc7-80d07d1b0cf4","status":"Creating","startTime":"2019-03-26T10:46:51.0422149Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['559'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:39:28 GMT'] + date: ['Tue, 26 Mar 2019 10:47:24 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -233,18 +249,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/574053bb-472c-43a3-9b50-8427c2f24d35?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/574053bb-472c-43a3-9b50-8427c2f24d35","name":"574053bb-472c-43a3-9b50-8427c2f24d35","status":"Succeeded","startTime":"2019-02-05T14:38:57.544724Z","endTime":"2019-02-05T14:39:30.3987716Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4","name":"2940a08c-1412-4496-bdc7-80d07d1b0cf4","status":"Creating","startTime":"2019-03-26T10:46:51.0422149Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:40:00 GMT'] + date: ['Tue, 26 Mar 2019 10:47:55 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] @@ -259,19 +277,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A39%3A30.4276552Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"7570c72c-fd10-def4-7e92-d308a818f511","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_c0c7e7ef","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"a44e1dee-3460-680f-60bf-160e41fade2b","fileSystemId":"7570c72c-fd10-def4-7e92-d308a818f511","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4","name":"2940a08c-1412-4496-bdc7-80d07d1b0cf4","status":"Creating","startTime":"2019-03-26T10:46:51.0422149Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1424'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:40:01 GMT'] - etag: [W/"datetime'2019-02-05T14%3A39%3A30.4276552Z'"] + date: ['Tue, 26 Mar 2019 10:48:29 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -286,19 +305,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/mountTargets?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/MountTargets/a44e1dee-3460-680f-60bf-160e41fade2b","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/a44e1dee-3460-680f-60bf-160e41fade2b","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/MountTargets","etag":"W/\"datetime''2019-02-05T14%3A39%3A30.3835572Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","mountTargetId":"a44e1dee-3460-680f-60bf-160e41fade2b","fileSystemId":"7570c72c-fd10-def4-7e92-d308a818f511","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}}]}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4","name":"2940a08c-1412-4496-bdc7-80d07d1b0cf4","status":"Creating","startTime":"2019-03-26T10:46:51.0422149Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['800'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:40:02 GMT'] + date: ['Tue, 26 Mar 2019 10:48: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] @@ -312,28 +332,57 @@ interactions: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] - method: DELETE + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2940a08c-1412-4496-bdc7-80d07d1b0cf4","name":"2940a08c-1412-4496-bdc7-80d07d1b0cf4","status":"Succeeded","startTime":"2019-03-26T10:46:51.0422149Z","endTime":"2019-03-26T10:49:24.9004317Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 10:49:31 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] + server: [Microsoft-IIS/10.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode ''} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T10%3A49%3A24.9421947Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"4e59fe22-4ffd-105d-078f-2f2cc2002ac6","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_8eade0cb","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0a08be46-6866-291b-3d1f-7e92d42eb8b4","fileSystemId":"4e59fe22-4ffd-105d-078f-2f2cc2002ac6","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87ed3f1-5231-4808-879f-089fa3b49848?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:40:04 GMT'] + content-length: ['1426'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 10:49:33 GMT'] + etag: [W/"datetime'2019-03-26T10%3A49%3A24.9421947Z'"] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87ed3f1-5231-4808-879f-089fa3b49848?api-version=2017-08-15&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] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14995'] x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} + status: {code: 200, message: OK} - request: body: null headers: @@ -341,18 +390,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87ed3f1-5231-4808-879f-089fa3b49848?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/mountTargets?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87ed3f1-5231-4808-879f-089fa3b49848","name":"a87ed3f1-5231-4808-879f-089fa3b49848","status":"Deleting","startTime":"2019-02-05T14:40:05.0206051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/mountTargets/0a08be46-6866-291b-3d1f-7e92d42eb8b4","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/0a08be46-6866-291b-3d1f-7e92d42eb8b4","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/mountTargets","location":"westus2","properties":{"provisioningState":"Succeeded","mountTargetId":"0a08be46-6866-291b-3d1f-7e92d42eb8b4","fileSystemId":"4e59fe22-4ffd-105d-078f-2f2cc2002ac6","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}}]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['560'] + content-length: ['744'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:40:36 GMT'] + date: ['Tue, 26 Mar 2019 10:49: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] @@ -360,6 +412,36 @@ interactions: x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + response: + body: {string: !!python/unicode ''} + headers: + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf9728b0-56b4-4d4d-81ec-27c8a975706e?api-version=2017-08-15'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 26 Mar 2019 10:49:36 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf9728b0-56b4-4d4d-81ec-27c8a975706e?api-version=2017-08-15&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: @@ -367,18 +449,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87ed3f1-5231-4808-879f-089fa3b49848?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf9728b0-56b4-4d4d-81ec-27c8a975706e?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87ed3f1-5231-4808-879f-089fa3b49848","name":"a87ed3f1-5231-4808-879f-089fa3b49848","status":"Deleting","startTime":"2019-02-05T14:40:05.0206051Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf9728b0-56b4-4d4d-81ec-27c8a975706e","name":"bf9728b0-56b4-4d4d-81ec-27c8a975706e","status":"Deleting","startTime":"2019-03-26T10:49:36.365415Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['560'] + content-length: ['559'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:41:07 GMT'] + date: ['Tue, 26 Mar 2019 10:50:08 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -393,18 +477,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87ed3f1-5231-4808-879f-089fa3b49848?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf9728b0-56b4-4d4d-81ec-27c8a975706e?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a87ed3f1-5231-4808-879f-089fa3b49848","name":"a87ed3f1-5231-4808-879f-089fa3b49848","status":"Succeeded","startTime":"2019-02-05T14:40:05.0206051Z","endTime":"2019-02-05T14:41:17.1415674Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bf9728b0-56b4-4d4d-81ec-27c8a975706e","name":"bf9728b0-56b4-4d4d-81ec-27c8a975706e","status":"Succeeded","startTime":"2019-03-26T10:49:36.365415Z","endTime":"2019-03-26T10:50:11.8893661Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['570'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:41:39 GMT'] + date: ['Tue, 26 Mar 2019 10:50:40 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -419,7 +505,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 @@ -431,7 +517,7 @@ interactions: cache-control: [no-cache] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:41:45 GMT'] + date: ['Tue, 26 Mar 2019 10:50:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -446,24 +532,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e181160e-a85e-4599-a6a8-03f3103ff03c?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3996c613-ec17-488a-878e-b6e34544e7ad?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:41:47 GMT'] + date: ['Tue, 26 Mar 2019 10:50:50 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e181160e-a85e-4599-a6a8-03f3103ff03c?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3996c613-ec17-488a-878e-b6e34544e7ad?api-version=2017-08-15&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: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -473,18 +561,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e181160e-a85e-4599-a6a8-03f3103ff03c?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3996c613-ec17-488a-878e-b6e34544e7ad?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e181160e-a85e-4599-a6a8-03f3103ff03c","name":"e181160e-a85e-4599-a6a8-03f3103ff03c","status":"Succeeded","startTime":"2019-02-05T14:41:48.280321Z","endTime":"2019-02-05T14:41:51.6158962Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3996c613-ec17-488a-878e-b6e34544e7ad","name":"3996c613-ec17-488a-878e-b6e34544e7ad","status":"Succeeded","startTime":"2019-03-26T10:50:51.2467893Z","endTime":"2019-03-26T10:50:54.4655643Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['543'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:42:19 GMT'] + date: ['Tue, 26 Mar 2019 10:51:22 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] @@ -499,7 +589,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -511,7 +601,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:42:24 GMT'] + date: ['Tue, 26 Mar 2019 10:51:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -526,24 +616,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d44db2f2-f7af-427c-9bc9-5eb8add02d1d?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/17198024-22fa-4baa-82ea-a23efbb91e6a?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:42:26 GMT'] + date: ['Tue, 26 Mar 2019 10:51:33 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d44db2f2-f7af-427c-9bc9-5eb8add02d1d?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/17198024-22fa-4baa-82ea-a23efbb91e6a?api-version=2017-08-15&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: ['14996'] + x-ms-ratelimit-remaining-subscription-deletes: ['14997'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -553,18 +645,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d44db2f2-f7af-427c-9bc9-5eb8add02d1d?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/17198024-22fa-4baa-82ea-a23efbb91e6a?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d44db2f2-f7af-427c-9bc9-5eb8add02d1d","name":"d44db2f2-f7af-427c-9bc9-5eb8add02d1d","status":"Succeeded","startTime":"2019-02-05T14:42:27.5983589Z","endTime":"2019-02-05T14:42:27.696032Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/17198024-22fa-4baa-82ea-a23efbb91e6a","name":"17198024-22fa-4baa-82ea-a23efbb91e6a","status":"Succeeded","startTime":"2019-03-26T10:51:33.770669Z","endTime":"2019-03-26T10:51:33.8955954Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['509'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:42:58 GMT'] + date: ['Tue, 26 Mar 2019 10:52:05 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] @@ -579,7 +673,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -591,7 +685,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:43:01 GMT'] + date: ['Tue, 26 Mar 2019 10:52:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml b/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml index fd02e4657a4c..ff3dba3fca87 100644 --- a/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_pool.test_create_delete_pool.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A12%3A16.2222456Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A27%3A35.3466016Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/342ca738-7485-4315-a9b3-b955c8793cef?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eac255e-a077-4511-8ea4-beadde9f056d?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:12:15 GMT'] - etag: [W/"datetime'2019-02-05T15%3A12%3A16.2222456Z'"] + date: ['Tue, 26 Mar 2019 10:27:35 GMT'] + etag: [W/"datetime'2019-03-26T10%3A27%3A35.3466016Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/342ca738-7485-4315-a9b3-b955c8793cef?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eac255e-a077-4511-8ea4-beadde9f056d?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/342ca738-7485-4315-a9b3-b955c8793cef","name":"342ca738-7485-4315-a9b3-b955c8793cef","status":"Succeeded","startTime":"2019-02-05T15:12:16.1776257Z","endTime":"2019-02-05T15:12:16.5521238Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eac255e-a077-4511-8ea4-beadde9f056d","name":"0eac255e-a077-4511-8ea4-beadde9f056d","status":"Succeeded","startTime":"2019-03-26T10:27:35.2563853Z","endTime":"2019-03-26T10:27:35.5842931Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:12:47 GMT'] + date: ['Tue, 26 Mar 2019 10:28:06 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] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A12%3A16.605518Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A27%3A35.6358072Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['346'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:12:49 GMT'] - etag: [W/"datetime'2019-02-05T15%3A12%3A16.605518Z'"] + date: ['Tue, 26 Mar 2019 10:28:08 GMT'] + etag: [W/"datetime'2019-03-26T10%3A27%3A35.6358072Z'"] 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] @@ -92,22 +98,24 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A12%3A53.7538948Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A28%3A09.9672651Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/142d2d8b-822b-4d50-89bb-1c30be72f8e7?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c77be385-b0dc-4991-9c24-6e685506eb21?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:12:54 GMT'] - etag: [W/"datetime'2019-02-05T15%3A12%3A53.7538948Z'"] + date: ['Tue, 26 Mar 2019 10:28:10 GMT'] + etag: [W/"datetime'2019-03-26T10%3A28%3A09.9672651Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/142d2d8b-822b-4d50-89bb-1c30be72f8e7?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c77be385-b0dc-4991-9c24-6e685506eb21?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/142d2d8b-822b-4d50-89bb-1c30be72f8e7","name":"142d2d8b-822b-4d50-89bb-1c30be72f8e7","status":"Succeeded","startTime":"2019-02-05T15:12:53.7108533Z","endTime":"2019-02-05T15:12:54.2233476Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c77be385-b0dc-4991-9c24-6e685506eb21","name":"c77be385-b0dc-4991-9c24-6e685506eb21","status":"Succeeded","startTime":"2019-03-26T10:28:09.901896Z","endTime":"2019-03-26T10:28:10.4267726Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['544'] + content-length: ['543'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:13:25 GMT'] + date: ['Tue, 26 Mar 2019 10:28: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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A12%3A54.2752631Z''\"","location":"westus2","properties":{"poolId":"f3745975-ce74-c043-492b-f41b07894674","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A28%3A10.4826323Z''\"","location":"westus2","properties":{"poolId":"33a89a49-247e-18f5-e50a-d48a7c899786","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:13:27 GMT'] - etag: [W/"datetime'2019-02-05T15%3A12%3A54.2752631Z'"] + date: ['Tue, 26 Mar 2019 10:28:45 GMT'] + etag: [W/"datetime'2019-03-26T10%3A28%3A10.4826323Z'"] 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] @@ -174,19 +186,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A12%3A54.2752631Z''\"","location":"westus2","properties":{"poolId":"f3745975-ce74-c043-492b-f41b07894674","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A28%3A10.4826323Z''\"","location":"westus2","properties":{"poolId":"33a89a49-247e-18f5-e50a-d48a7c899786","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: ['569'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:13:28 GMT'] + date: ['Tue, 26 Mar 2019 10:28:48 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] @@ -202,24 +216,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fef59a8c-7b00-45ce-833d-2950e5f00459?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a1c9ec-4090-4ee1-8535-6e1b6e3940bf?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:13:30 GMT'] + date: ['Tue, 26 Mar 2019 10:28:49 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fef59a8c-7b00-45ce-833d-2950e5f00459?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a1c9ec-4090-4ee1-8535-6e1b6e3940bf?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -229,18 +245,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fef59a8c-7b00-45ce-833d-2950e5f00459?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a1c9ec-4090-4ee1-8535-6e1b6e3940bf?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fef59a8c-7b00-45ce-833d-2950e5f00459","name":"fef59a8c-7b00-45ce-833d-2950e5f00459","status":"Succeeded","startTime":"2019-02-05T15:13:31.158312Z","endTime":"2019-02-05T15:13:34.448618Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/32a1c9ec-4090-4ee1-8535-6e1b6e3940bf","name":"32a1c9ec-4090-4ee1-8535-6e1b6e3940bf","status":"Succeeded","startTime":"2019-03-26T10:28:50.667442Z","endTime":"2019-03-26T10:28:54.7468002Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['542'] + content-length: ['543'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:14:02 GMT'] + date: ['Tue, 26 Mar 2019 10:29:22 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] @@ -255,19 +273,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2017-08-15 response: body: {string: !!python/unicode '{"value":[]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:14:03 GMT'] + date: ['Tue, 26 Mar 2019 10:29:24 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -282,7 +302,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -294,7 +314,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:14:09 GMT'] + date: ['Tue, 26 Mar 2019 10:29:30 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -309,20 +329,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c31763da-d4c3-4ea8-8e7e-2ca4a9002469?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/01847c78-9817-4bc1-b0f7-e9d160a4dfc4?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:14:11 GMT'] + date: ['Tue, 26 Mar 2019 10:29:33 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c31763da-d4c3-4ea8-8e7e-2ca4a9002469?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/01847c78-9817-4bc1-b0f7-e9d160a4dfc4?api-version=2017-08-15&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] @@ -336,18 +358,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c31763da-d4c3-4ea8-8e7e-2ca4a9002469?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/01847c78-9817-4bc1-b0f7-e9d160a4dfc4?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c31763da-d4c3-4ea8-8e7e-2ca4a9002469","name":"c31763da-d4c3-4ea8-8e7e-2ca4a9002469","status":"Succeeded","startTime":"2019-02-05T15:14:11.7480764Z","endTime":"2019-02-05T15:14:11.8140356Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/01847c78-9817-4bc1-b0f7-e9d160a4dfc4","name":"01847c78-9817-4bc1-b0f7-e9d160a4dfc4","status":"Succeeded","startTime":"2019-03-26T10:29:34.1923616Z","endTime":"2019-03-26T10:29:34.2861227Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:14:42 GMT'] + date: ['Tue, 26 Mar 2019 10:30:05 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] @@ -362,7 +386,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -374,7 +398,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:14:45 GMT'] + date: ['Tue, 26 Mar 2019 10:30:08 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml b/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml index 5f7a9189a55c..b7f988754ad9 100644 --- a/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_pool.test_get_pool_by_name.yaml @@ -8,21 +8,23 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A14%3A52.5792587Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A30%3A14.065672Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/406222a2-9d58-45bc-825f-d731ad8feb50?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/16ee529e-ce10-4bcd-a837-0acba08101a8?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['373'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:14:52 GMT'] - etag: [W/"datetime'2019-02-05T15%3A14%3A52.5792587Z'"] + date: ['Tue, 26 Mar 2019 10:30:14 GMT'] + etag: [W/"datetime'2019-03-26T10%3A30%3A14.065672Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/406222a2-9d58-45bc-825f-d731ad8feb50?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/16ee529e-ce10-4bcd-a837-0acba08101a8?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/406222a2-9d58-45bc-825f-d731ad8feb50","name":"406222a2-9d58-45bc-825f-d731ad8feb50","status":"Succeeded","startTime":"2019-02-05T15:14:52.5358947Z","endTime":"2019-02-05T15:14:52.8022754Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/16ee529e-ce10-4bcd-a837-0acba08101a8","name":"16ee529e-ce10-4bcd-a837-0acba08101a8","status":"Succeeded","startTime":"2019-03-26T10:30:14.0131614Z","endTime":"2019-03-26T10:30:14.2943556Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:15:24 GMT'] + date: ['Tue, 26 Mar 2019 10:30:44 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A14%3A52.8464481Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A30%3A14.3458716Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:15:25 GMT'] - etag: [W/"datetime'2019-02-05T15%3A14%3A52.8464481Z'"] + date: ['Tue, 26 Mar 2019 10:30:46 GMT'] + etag: [W/"datetime'2019-03-26T10%3A30%3A14.3458716Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A15%3A27.6321421Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A30%3A49.852166Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af738684-2c96-41a5-9cc2-c3c086297aac?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534c8243-559a-4485-9959-5b285a6099a8?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['460'] + content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:15:28 GMT'] - etag: [W/"datetime'2019-02-05T15%3A15%3A27.6321421Z'"] + date: ['Tue, 26 Mar 2019 10:30:49 GMT'] + etag: [W/"datetime'2019-03-26T10%3A30%3A49.852166Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af738684-2c96-41a5-9cc2-c3c086297aac?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534c8243-559a-4485-9959-5b285a6099a8?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af738684-2c96-41a5-9cc2-c3c086297aac","name":"af738684-2c96-41a5-9cc2-c3c086297aac","status":"Succeeded","startTime":"2019-02-05T15:15:27.5807764Z","endTime":"2019-02-05T15:15:28.0190286Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/534c8243-559a-4485-9959-5b285a6099a8","name":"534c8243-559a-4485-9959-5b285a6099a8","status":"Succeeded","startTime":"2019-03-26T10:30:49.7969582Z","endTime":"2019-03-26T10:30:50.3431042Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:16:00 GMT'] + date: ['Tue, 26 Mar 2019 10:31:23 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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A15%3A28.0714525Z''\"","location":"westus2","properties":{"poolId":"8c262bf5-805a-06b4-37b0-2dcf2aa89d00","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A30%3A50.4025581Z''\"","location":"westus2","properties":{"poolId":"32303921-cc74-f683-1b6c-2e6d642807ca","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:16:00 GMT'] - etag: [W/"datetime'2019-02-05T15%3A15%3A28.0714525Z'"] + date: ['Tue, 26 Mar 2019 10:31:24 GMT'] + etag: [W/"datetime'2019-03-26T10%3A30%3A50.4025581Z'"] 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] @@ -174,20 +186,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A15%3A28.0714525Z''\"","location":"westus2","properties":{"poolId":"8c262bf5-805a-06b4-37b0-2dcf2aa89d00","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A30%3A50.4025581Z''\"","location":"westus2","properties":{"poolId":"32303921-cc74-f683-1b6c-2e6d642807ca","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:16:02 GMT'] - etag: [W/"datetime'2019-02-05T15%3A15%3A28.0714525Z'"] + date: ['Tue, 26 Mar 2019 10:31:27 GMT'] + etag: [W/"datetime'2019-03-26T10%3A30%3A50.4025581Z'"] 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] @@ -203,24 +217,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c22e1f09-68ed-4115-a754-c238a739c20d?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/abc586a5-9892-4a50-9ef0-8f8e76aa5e5c?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:16:04 GMT'] + date: ['Tue, 26 Mar 2019 10:31:30 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c22e1f09-68ed-4115-a754-c238a739c20d?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/abc586a5-9892-4a50-9ef0-8f8e76aa5e5c?api-version=2017-08-15&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: ['14996'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -230,18 +246,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c22e1f09-68ed-4115-a754-c238a739c20d?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/abc586a5-9892-4a50-9ef0-8f8e76aa5e5c?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c22e1f09-68ed-4115-a754-c238a739c20d","name":"c22e1f09-68ed-4115-a754-c238a739c20d","status":"Succeeded","startTime":"2019-02-05T15:16:04.8247745Z","endTime":"2019-02-05T15:16:08.2709998Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/abc586a5-9892-4a50-9ef0-8f8e76aa5e5c","name":"abc586a5-9892-4a50-9ef0-8f8e76aa5e5c","status":"Succeeded","startTime":"2019-03-26T10:31:31.3913776Z","endTime":"2019-03-26T10:31:34.9817836Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:16:35 GMT'] + date: ['Tue, 26 Mar 2019 10:32:03 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -256,7 +274,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -268,7 +286,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:16:41 GMT'] + date: ['Tue, 26 Mar 2019 10:32:09 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -283,24 +301,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bfd1217-4f44-4750-82d1-50d69f81a5f1?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9fd4e43c-4474-463f-a4f5-7e8a396d27ad?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:16:42 GMT'] + date: ['Tue, 26 Mar 2019 10:32:12 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bfd1217-4f44-4750-82d1-50d69f81a5f1?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9fd4e43c-4474-463f-a4f5-7e8a396d27ad?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -310,18 +330,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bfd1217-4f44-4750-82d1-50d69f81a5f1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9fd4e43c-4474-463f-a4f5-7e8a396d27ad?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7bfd1217-4f44-4750-82d1-50d69f81a5f1","name":"7bfd1217-4f44-4750-82d1-50d69f81a5f1","status":"Succeeded","startTime":"2019-02-05T15:16:43.6957126Z","endTime":"2019-02-05T15:16:43.7702008Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9fd4e43c-4474-463f-a4f5-7e8a396d27ad","name":"9fd4e43c-4474-463f-a4f5-7e8a396d27ad","status":"Succeeded","startTime":"2019-03-26T10:32:12.7329943Z","endTime":"2019-03-26T10:32:12.8580008Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:17:15 GMT'] + date: ['Tue, 26 Mar 2019 10:32:44 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -336,7 +358,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -348,7 +370,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:17:18 GMT'] + date: ['Tue, 26 Mar 2019 10:32:47 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml b/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml index 653006558c0f..802e76a26277 100644 --- a/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_pool.test_list_pools.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A17%3A22.8939767Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A32%3A51.6033375Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73038b85-7ede-4ea3-a65a-bb532ad50cf3?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9ce541f-e9de-4d00-aaf7-bbffdf0992bf?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:17:22 GMT'] - etag: [W/"datetime'2019-02-05T15%3A17%3A22.8939767Z'"] + date: ['Tue, 26 Mar 2019 10:32:51 GMT'] + etag: [W/"datetime'2019-03-26T10%3A32%3A51.6033375Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73038b85-7ede-4ea3-a65a-bb532ad50cf3?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9ce541f-e9de-4d00-aaf7-bbffdf0992bf?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73038b85-7ede-4ea3-a65a-bb532ad50cf3","name":"73038b85-7ede-4ea3-a65a-bb532ad50cf3","status":"Succeeded","startTime":"2019-02-05T15:17:22.8480966Z","endTime":"2019-02-05T15:17:23.1266145Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b9ce541f-e9de-4d00-aaf7-bbffdf0992bf","name":"b9ce541f-e9de-4d00-aaf7-bbffdf0992bf","status":"Succeeded","startTime":"2019-03-26T10:32:51.50362Z","endTime":"2019-03-26T10:32:51.84139Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['510'] + content-length: ['506'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:17:54 GMT'] + date: ['Tue, 26 Mar 2019 10:33:24 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A17%3A23.1711737Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A32%3A51.8915451Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:17:55 GMT'] - etag: [W/"datetime'2019-02-05T15%3A17%3A23.1711737Z'"] + date: ['Tue, 26 Mar 2019 10:33:25 GMT'] + etag: [W/"datetime'2019-03-26T10%3A32%3A51.8915451Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A17%3A59.1287046Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A33%3A29.6616046Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b1cc197-c16e-4f17-b47c-f09b4dbf6d7c?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb1b1df4-5524-480d-9fbc-77a97ceaa5f5?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:17:59 GMT'] - etag: [W/"datetime'2019-02-05T15%3A17%3A59.1287046Z'"] + date: ['Tue, 26 Mar 2019 10:33:29 GMT'] + etag: [W/"datetime'2019-03-26T10%3A33%3A29.6616046Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b1cc197-c16e-4f17-b47c-f09b4dbf6d7c?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb1b1df4-5524-480d-9fbc-77a97ceaa5f5?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0b1cc197-c16e-4f17-b47c-f09b4dbf6d7c","name":"0b1cc197-c16e-4f17-b47c-f09b4dbf6d7c","status":"Succeeded","startTime":"2019-02-05T15:17:59.0725323Z","endTime":"2019-02-05T15:17:59.472509Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bb1b1df4-5524-480d-9fbc-77a97ceaa5f5","name":"bb1b1df4-5524-480d-9fbc-77a97ceaa5f5","status":"Succeeded","startTime":"2019-03-26T10:33:29.6169003Z","endTime":"2019-03-26T10:33:30.3856146Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['543'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:18:30 GMT'] + date: ['Tue, 26 Mar 2019 10:34:02 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A17%3A59.5269872Z''\"","location":"westus2","properties":{"poolId":"7ad6af19-b635-50a0-bbba-6ec99f727a64","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A33%3A30.4441671Z''\"","location":"westus2","properties":{"poolId":"f3e45f87-0d6c-5bbd-5c31-fa1736a056d2","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:18:30 GMT'] - etag: [W/"datetime'2019-02-05T15%3A17%3A59.5269872Z'"] + date: ['Tue, 26 Mar 2019 10:34:04 GMT'] + etag: [W/"datetime'2019-03-26T10%3A33%3A30.4441671Z'"] 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] @@ -177,26 +189,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A18%3A34.6208455Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A34%3A08.6685518Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/729e14ac-854e-4268-b4ac-9798314ba235?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f14e830e-b908-4336-b0d3-627fa17069b5?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:18:34 GMT'] - etag: [W/"datetime'2019-02-05T15%3A18%3A34.6208455Z'"] + date: ['Tue, 26 Mar 2019 10:34:09 GMT'] + etag: [W/"datetime'2019-03-26T10%3A34%3A08.6685518Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -206,18 +220,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/729e14ac-854e-4268-b4ac-9798314ba235?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f14e830e-b908-4336-b0d3-627fa17069b5?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/729e14ac-854e-4268-b4ac-9798314ba235","name":"729e14ac-854e-4268-b4ac-9798314ba235","status":"Succeeded","startTime":"2019-02-05T15:18:34.5424464Z","endTime":"2019-02-05T15:18:34.9937453Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f14e830e-b908-4336-b0d3-627fa17069b5","name":"f14e830e-b908-4336-b0d3-627fa17069b5","status":"Succeeded","startTime":"2019-03-26T10:34:08.6117247Z","endTime":"2019-03-26T10:34:09.1898775Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:19:06 GMT'] + date: ['Tue, 26 Mar 2019 10:34:41 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -232,19 +248,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A18%3A35.042142Z''\"","location":"westus2","properties":{"poolId":"64f3170b-fc28-36b6-a5ab-20b2fb86be85","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A34%3A09.2459632Z''\"","location":"westus2","properties":{"poolId":"2b60b84b-06de-962d-7107-aae953f92006","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: ['556'] + content-length: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:19:07 GMT'] - etag: [W/"datetime'2019-02-05T15%3A18%3A35.042142Z'"] + date: ['Tue, 26 Mar 2019 10:34:42 GMT'] + etag: [W/"datetime'2019-03-26T10%3A34%3A09.2459632Z'"] 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] @@ -259,19 +277,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A17%3A59.5269872Z''\"","location":"westus2","properties":{"poolId":"7ad6af19-b635-50a0-bbba-6ec99f727a64","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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A18%3A35.042142Z''\"","location":"westus2","properties":{"poolId":"64f3170b-fc28-36b6-a5ab-20b2fb86be85","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A33%3A30.4441671Z''\"","location":"westus2","properties":{"poolId":"f3e45f87-0d6c-5bbd-5c31-fa1736a056d2","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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A34%3A09.2459632Z''\"","location":"westus2","properties":{"poolId":"2b60b84b-06de-962d-7107-aae953f92006","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: ['1126'] + content-length: ['1127'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:19:08 GMT'] + date: ['Tue, 26 Mar 2019 10:34:44 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -287,20 +307,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50bfabb1-7c94-4f61-aea3-e1110179e066?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6e688de-dc80-4d11-9329-bd8c6678a498?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:19:10 GMT'] + date: ['Tue, 26 Mar 2019 10:34:48 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50bfabb1-7c94-4f61-aea3-e1110179e066?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6e688de-dc80-4d11-9329-bd8c6678a498?api-version=2017-08-15&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] @@ -314,18 +336,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50bfabb1-7c94-4f61-aea3-e1110179e066?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6e688de-dc80-4d11-9329-bd8c6678a498?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50bfabb1-7c94-4f61-aea3-e1110179e066","name":"50bfabb1-7c94-4f61-aea3-e1110179e066","status":"Succeeded","startTime":"2019-02-05T15:19:11.57666Z","endTime":"2019-02-05T15:19:15.0392675Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d6e688de-dc80-4d11-9329-bd8c6678a498","name":"d6e688de-dc80-4d11-9329-bd8c6678a498","status":"Succeeded","startTime":"2019-03-26T10:34:48.3702389Z","endTime":"2019-03-26T10:34:51.5967995Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['542'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:19:41 GMT'] + date: ['Tue, 26 Mar 2019 10:35:19 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -341,24 +365,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3e85ac3-cbb4-491b-bfd2-3018b2640b7a?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0aa0675-b7f2-4881-ab89-e2d039c05d6a?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:19:44 GMT'] + date: ['Tue, 26 Mar 2019 10:35:22 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3e85ac3-cbb4-491b-bfd2-3018b2640b7a?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0aa0675-b7f2-4881-ab89-e2d039c05d6a?api-version=2017-08-15&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: ['14995'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -368,18 +394,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3e85ac3-cbb4-491b-bfd2-3018b2640b7a?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0aa0675-b7f2-4881-ab89-e2d039c05d6a?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c3e85ac3-cbb4-491b-bfd2-3018b2640b7a","name":"c3e85ac3-cbb4-491b-bfd2-3018b2640b7a","status":"Succeeded","startTime":"2019-02-05T15:19:44.5712525Z","endTime":"2019-02-05T15:19:48.2753736Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-2"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d0aa0675-b7f2-4881-ab89-e2d039c05d6a","name":"d0aa0675-b7f2-4881-ab89-e2d039c05d6a","status":"Succeeded","startTime":"2019-03-26T10:35:22.4813869Z","endTime":"2019-03-26T10:35:25.6760581Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:20:15 GMT'] + date: ['Tue, 26 Mar 2019 10:35:53 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] @@ -394,7 +422,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -406,7 +434,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:20:22 GMT'] + date: ['Tue, 26 Mar 2019 10:35:59 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -420,7 +448,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -432,7 +460,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:20:28 GMT'] + date: ['Tue, 26 Mar 2019 10:36:05 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -447,24 +475,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6c5cd77-c0d0-4a84-8a88-f79c2a6a6d05?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bfb8373f-1f40-4e0c-b3bb-caf681dd82aa?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:20:29 GMT'] + date: ['Tue, 26 Mar 2019 10:36:08 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6c5cd77-c0d0-4a84-8a88-f79c2a6a6d05?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bfb8373f-1f40-4e0c-b3bb-caf681dd82aa?api-version=2017-08-15&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: ['14996'] + x-ms-ratelimit-remaining-subscription-deletes: ['14997'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -474,18 +504,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6c5cd77-c0d0-4a84-8a88-f79c2a6a6d05?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bfb8373f-1f40-4e0c-b3bb-caf681dd82aa?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c6c5cd77-c0d0-4a84-8a88-f79c2a6a6d05","name":"c6c5cd77-c0d0-4a84-8a88-f79c2a6a6d05","status":"Succeeded","startTime":"2019-02-05T15:20:30.3242564Z","endTime":"2019-02-05T15:20:30.384465Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bfb8373f-1f40-4e0c-b3bb-caf681dd82aa","name":"bfb8373f-1f40-4e0c-b3bb-caf681dd82aa","status":"Succeeded","startTime":"2019-03-26T10:36:08.0786609Z","endTime":"2019-03-26T10:36:08.1567949Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['509'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:21:01 GMT'] + date: ['Tue, 26 Mar 2019 10:36:39 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -500,7 +532,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -512,7 +544,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:21:04 GMT'] + date: ['Tue, 26 Mar 2019 10:36:41 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml b/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml index 8949c6e78acf..4128448e68cd 100644 --- a/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_pool.test_patch_pool.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A21%3A09.2820535Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A36%3A46.8488687Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbca2482-1dca-4cad-bbd7-66ae4a5ee06e?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eeff5ce-80a8-4364-94db-402bbd9ea8b8?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:21:09 GMT'] - etag: [W/"datetime'2019-02-05T15%3A21%3A09.2820535Z'"] + date: ['Tue, 26 Mar 2019 10:36:47 GMT'] + etag: [W/"datetime'2019-03-26T10%3A36%3A46.8488687Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbca2482-1dca-4cad-bbd7-66ae4a5ee06e?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eeff5ce-80a8-4364-94db-402bbd9ea8b8?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbca2482-1dca-4cad-bbd7-66ae4a5ee06e","name":"dbca2482-1dca-4cad-bbd7-66ae4a5ee06e","status":"Succeeded","startTime":"2019-02-05T15:21:09.2221577Z","endTime":"2019-02-05T15:21:09.5081681Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5eeff5ce-80a8-4364-94db-402bbd9ea8b8","name":"5eeff5ce-80a8-4364-94db-402bbd9ea8b8","status":"Succeeded","startTime":"2019-03-26T10:36:46.7978597Z","endTime":"2019-03-26T10:36:47.0789741Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:21:41 GMT'] + date: ['Tue, 26 Mar 2019 10:37:18 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A21%3A09.5642528Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A36%3A47.1310711Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:21:42 GMT'] - etag: [W/"datetime'2019-02-05T15%3A21%3A09.5642528Z'"] + date: ['Tue, 26 Mar 2019 10:37:19 GMT'] + etag: [W/"datetime'2019-03-26T10%3A36%3A47.1310711Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A21%3A45.6176597Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A37%3A24.3017032Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fabe5902-d0eb-453c-b20f-bb2b938ed9fd?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64451b95-0fe1-4887-9a6f-158420755c3f?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:21:46 GMT'] - etag: [W/"datetime'2019-02-05T15%3A21%3A45.6176597Z'"] + date: ['Tue, 26 Mar 2019 10:37:24 GMT'] + etag: [W/"datetime'2019-03-26T10%3A37%3A24.3017032Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fabe5902-d0eb-453c-b20f-bb2b938ed9fd?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64451b95-0fe1-4887-9a6f-158420755c3f?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fabe5902-d0eb-453c-b20f-bb2b938ed9fd","name":"fabe5902-d0eb-453c-b20f-bb2b938ed9fd","status":"Succeeded","startTime":"2019-02-05T15:21:45.557945Z","endTime":"2019-02-05T15:21:46.0241837Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/64451b95-0fe1-4887-9a6f-158420755c3f","name":"64451b95-0fe1-4887-9a6f-158420755c3f","status":"Succeeded","startTime":"2019-03-26T10:37:24.2122314Z","endTime":"2019-03-26T10:37:25.0992039Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['543'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:22:18 GMT'] + date: ['Tue, 26 Mar 2019 10:37:55 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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A21%3A46.0799855Z''\"","location":"westus2","properties":{"poolId":"f9e0a262-449e-9588-480a-e5f8e62226ad","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A37%3A25.1483087Z''\"","location":"westus2","properties":{"poolId":"be620f0d-89de-ad92-145e-37b4eeab6719","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:22:20 GMT'] - etag: [W/"datetime'2019-02-05T15%3A21%3A46.0799855Z'"] + date: ['Tue, 26 Mar 2019 10:37:57 GMT'] + etag: [W/"datetime'2019-03-26T10%3A37%3A25.1483087Z'"] 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] @@ -168,28 +180,31 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"tags": {"Tag2": "Value1"}}' + body: !!python/unicode '{"properties": {"serviceLevel": "Standard", "size": 4398046511104}, + "tags": {"Tag2": "Value1"}}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['28'] + Content-Length: ['95'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A22%3A22.7869332Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"poolId":"f9e0a262-449e-9588-480a-e5f8e62226ad","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A37%3A59.6339566Z''\"","location":"westus2","tags":{"Tag2":"Value1"},"properties":{"provisioningState":"Succeeded","poolId":"be620f0d-89de-ad92-145e-37b4eeab6719","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: ['582'] + content-length: ['583'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:22:22 GMT'] - etag: [W/"datetime'2019-02-05T15%3A22%3A22.7869332Z'"] + date: ['Tue, 26 Mar 2019 10:38:00 GMT'] + etag: [W/"datetime'2019-03-26T10%3A37%3A59.6339566Z'"] 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] @@ -206,24 +221,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aaafd7d1-3676-45e1-8e70-e6e5a01979d0?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f441b4cf-283d-4d42-bac3-33655644a47d?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:22:25 GMT'] + date: ['Tue, 26 Mar 2019 10:38:01 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aaafd7d1-3676-45e1-8e70-e6e5a01979d0?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f441b4cf-283d-4d42-bac3-33655644a47d?api-version=2017-08-15&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: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14996'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -233,18 +250,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aaafd7d1-3676-45e1-8e70-e6e5a01979d0?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f441b4cf-283d-4d42-bac3-33655644a47d?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/aaafd7d1-3676-45e1-8e70-e6e5a01979d0","name":"aaafd7d1-3676-45e1-8e70-e6e5a01979d0","status":"Succeeded","startTime":"2019-02-05T15:22:25.8607951Z","endTime":"2019-02-05T15:22:29.4610317Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f441b4cf-283d-4d42-bac3-33655644a47d","name":"f441b4cf-283d-4d42-bac3-33655644a47d","status":"Succeeded","startTime":"2019-03-26T10:38:01.8343999Z","endTime":"2019-03-26T10:38:05.328136Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['544'] + content-length: ['543'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:22:56 GMT'] + date: ['Tue, 26 Mar 2019 10:38:32 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -259,7 +278,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -271,7 +290,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:23:03 GMT'] + date: ['Tue, 26 Mar 2019 10:38:38 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -286,24 +305,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72ec70cd-572f-4e37-bd62-8063ef430fb5?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/41bfff94-75e9-4b7e-b2a1-91e080da2604?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:23:05 GMT'] + date: ['Tue, 26 Mar 2019 10:38:39 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72ec70cd-572f-4e37-bd62-8063ef430fb5?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/41bfff94-75e9-4b7e-b2a1-91e080da2604?api-version=2017-08-15&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-ms-ratelimit-remaining-subscription-deletes: ['14997'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -313,18 +334,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72ec70cd-572f-4e37-bd62-8063ef430fb5?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/41bfff94-75e9-4b7e-b2a1-91e080da2604?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/72ec70cd-572f-4e37-bd62-8063ef430fb5","name":"72ec70cd-572f-4e37-bd62-8063ef430fb5","status":"Succeeded","startTime":"2019-02-05T15:23:05.7558139Z","endTime":"2019-02-05T15:23:05.8248049Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/41bfff94-75e9-4b7e-b2a1-91e080da2604","name":"41bfff94-75e9-4b7e-b2a1-91e080da2604","status":"Succeeded","startTime":"2019-03-26T10:38:40.2350758Z","endTime":"2019-03-26T10:38:40.3134881Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:23:36 GMT'] + date: ['Tue, 26 Mar 2019 10:39:12 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -339,7 +362,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -351,7 +374,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:23:40 GMT'] + date: ['Tue, 26 Mar 2019 10:39:15 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml b/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml index d2f91ed682cd..6ad846057a9c 100644 --- a/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_pool.test_update_pool.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A23%3A44.6600528Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A39%3A22.0536719Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e659e722-4cc1-4c53-b93a-819d4e928fcb?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8690977-1da9-401a-892a-886304da13fc?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:23:44 GMT'] - etag: [W/"datetime'2019-02-05T15%3A23%3A44.6600528Z'"] + date: ['Tue, 26 Mar 2019 10:39:22 GMT'] + etag: [W/"datetime'2019-03-26T10%3A39%3A22.0536719Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e659e722-4cc1-4c53-b93a-819d4e928fcb?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8690977-1da9-401a-892a-886304da13fc?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e659e722-4cc1-4c53-b93a-819d4e928fcb","name":"e659e722-4cc1-4c53-b93a-819d4e928fcb","status":"Succeeded","startTime":"2019-02-05T15:23:44.6187285Z","endTime":"2019-02-05T15:23:44.8894669Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8690977-1da9-401a-892a-886304da13fc","name":"d8690977-1da9-401a-892a-886304da13fc","status":"Succeeded","startTime":"2019-03-26T10:39:21.9527965Z","endTime":"2019-03-26T10:39:22.280899Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['510'] + content-length: ['509'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:24:16 GMT'] + date: ['Tue, 26 Mar 2019 10:39:54 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] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T15%3A23%3A44.9422538Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A39%3A22.3368736Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:24:17 GMT'] - etag: [W/"datetime'2019-02-05T15%3A23%3A44.9422538Z'"] + date: ['Tue, 26 Mar 2019 10:39:56 GMT'] + etag: [W/"datetime'2019-03-26T10%3A39%3A22.3368736Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A24%3A21.1809842Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A40%3A01.1617751Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3787065d-8974-43be-a8fc-e6e4fab6ab24?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf9df5a6-09a0-4241-b19a-da4af3da1bec?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:24:20 GMT'] - etag: [W/"datetime'2019-02-05T15%3A24%3A21.1809842Z'"] + date: ['Tue, 26 Mar 2019 10:40:01 GMT'] + etag: [W/"datetime'2019-03-26T10%3A40%3A01.1617751Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3787065d-8974-43be-a8fc-e6e4fab6ab24?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf9df5a6-09a0-4241-b19a-da4af3da1bec?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/3787065d-8974-43be-a8fc-e6e4fab6ab24","name":"3787065d-8974-43be-a8fc-e6e4fab6ab24","status":"Succeeded","startTime":"2019-02-05T15:24:21.1051659Z","endTime":"2019-02-05T15:24:21.5750237Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cf9df5a6-09a0-4241-b19a-da4af3da1bec","name":"cf9df5a6-09a0-4241-b19a-da4af3da1bec","status":"Succeeded","startTime":"2019-03-26T10:40:01.1147666Z","endTime":"2019-03-26T10:40:01.7709855Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:24:53 GMT'] + date: ['Tue, 26 Mar 2019 10:40: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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A24%3A21.6383081Z''\"","location":"westus2","properties":{"poolId":"dbf86e45-0622-60f0-68c1-10cdd83f082c","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A40%3A01.8242471Z''\"","location":"westus2","properties":{"poolId":"71f884b0-1109-a1e1-ec24-a7b4681946d3","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:24:54 GMT'] - etag: [W/"datetime'2019-02-05T15%3A24%3A21.6383081Z'"] + date: ['Tue, 26 Mar 2019 10:40:36 GMT'] + etag: [W/"datetime'2019-03-26T10%3A40%3A01.8242471Z'"] 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] @@ -177,27 +189,29 @@ interactions: Content-Length: ['90'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T15%3A24%3A56.46503Z''\"","location":"westus2","properties":{"poolId":"dbf86e45-0622-60f0-68c1-10cdd83f082c","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Standard","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A40%3A38.4473641Z''\"","location":"westus2","properties":{"poolId":"71f884b0-1109-a1e1-ec24-a7b4681946d3","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: ['556'] + content-length: ['558'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:24:56 GMT'] - etag: [W/"datetime'2019-02-05T15%3A24%3A56.46503Z'"] + date: ['Tue, 26 Mar 2019 10:40:38 GMT'] + etag: [W/"datetime'2019-03-26T10%3A40%3A38.4473641Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -208,24 +222,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d608311e-e450-47de-b461-c9dd64da20a4?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d7decf1f-1fc7-4beb-aeae-44421a29a90a?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:24:57 GMT'] + date: ['Tue, 26 Mar 2019 10:40:41 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d608311e-e450-47de-b461-c9dd64da20a4?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d7decf1f-1fc7-4beb-aeae-44421a29a90a?api-version=2017-08-15&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: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -235,18 +251,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d608311e-e450-47de-b461-c9dd64da20a4?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d7decf1f-1fc7-4beb-aeae-44421a29a90a?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d608311e-e450-47de-b461-c9dd64da20a4","name":"d608311e-e450-47de-b461-c9dd64da20a4","status":"Succeeded","startTime":"2019-02-05T15:24:58.515297Z","endTime":"2019-02-05T15:25:01.966423Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d7decf1f-1fc7-4beb-aeae-44421a29a90a","name":"d7decf1f-1fc7-4beb-aeae-44421a29a90a","status":"Succeeded","startTime":"2019-03-26T10:40:41.8653136Z","endTime":"2019-03-26T10:40:44.9818013Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['542'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:25:30 GMT'] + date: ['Tue, 26 Mar 2019 10:41:12 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -261,7 +279,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -273,7 +291,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:25:35 GMT'] + date: ['Tue, 26 Mar 2019 10:41:19 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -288,24 +306,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d42d60da-9abb-4e36-8dc5-78efafe00cd5?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f655fc0-b5f8-43eb-a079-65dbe4c6d479?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:25:36 GMT'] + date: ['Tue, 26 Mar 2019 10:41:22 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d42d60da-9abb-4e36-8dc5-78efafe00cd5?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f655fc0-b5f8-43eb-a079-65dbe4c6d479?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -315,18 +335,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d42d60da-9abb-4e36-8dc5-78efafe00cd5?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f655fc0-b5f8-43eb-a079-65dbe4c6d479?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d42d60da-9abb-4e36-8dc5-78efafe00cd5","name":"d42d60da-9abb-4e36-8dc5-78efafe00cd5","status":"Succeeded","startTime":"2019-02-05T15:25:36.7396991Z","endTime":"2019-02-05T15:25:36.8117402Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0f655fc0-b5f8-43eb-a079-65dbe4c6d479","name":"0f655fc0-b5f8-43eb-a079-65dbe4c6d479","status":"Succeeded","startTime":"2019-03-26T10:41:22.8390407Z","endTime":"2019-03-26T10:41:22.9171874Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:26:07 GMT'] + date: ['Tue, 26 Mar 2019 10:41:54 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] @@ -341,7 +363,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -353,7 +375,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:26:11 GMT'] + date: ['Tue, 26 Mar 2019 10:41:57 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml b/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml index 260865c5151d..e69354c556fb 100644 --- a/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_snapshot.test_create_delete_snapshot.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A43%3A30.8013227Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T12%3A04%3A07.5868882Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d0f8f87-1cab-487e-855c-00418e58d3fe?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73d49dce-59cf-4871-9769-19014f1f20e6?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:43:31 GMT'] - etag: [W/"datetime'2019-02-05T14%3A43%3A30.8013227Z'"] + date: ['Tue, 26 Mar 2019 12:04:08 GMT'] + etag: [W/"datetime'2019-03-26T12%3A04%3A07.5868882Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d0f8f87-1cab-487e-855c-00418e58d3fe?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73d49dce-59cf-4871-9769-19014f1f20e6?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9d0f8f87-1cab-487e-855c-00418e58d3fe","name":"9d0f8f87-1cab-487e-855c-00418e58d3fe","status":"Succeeded","startTime":"2019-02-05T14:43:30.755504Z","endTime":"2019-02-05T14:43:31.0275113Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/73d49dce-59cf-4871-9769-19014f1f20e6","name":"73d49dce-59cf-4871-9769-19014f1f20e6","status":"Succeeded","startTime":"2019-03-26T12:04:07.5357666Z","endTime":"2019-03-26T12:04:07.8326234Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['509'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:44:02 GMT'] + date: ['Tue, 26 Mar 2019 12:04:40 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A43%3A31.0735166Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T12%3A04%3A07.8760947Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:44:03 GMT'] - etag: [W/"datetime'2019-02-05T14%3A43%3A31.0735166Z'"] + date: ['Tue, 26 Mar 2019 12:04:41 GMT'] + etag: [W/"datetime'2019-03-26T12%3A04%3A07.8760947Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A44%3A07.2982369Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T12%3A04%3A47.114048Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50828756-abbb-4454-bb3a-67897d1f9af1?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ada61a9-18c4-4b32-9f29-34ea71d9d32f?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['460'] + content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:44:06 GMT'] - etag: [W/"datetime'2019-02-05T14%3A44%3A07.2982369Z'"] + date: ['Tue, 26 Mar 2019 12:04:47 GMT'] + etag: [W/"datetime'2019-03-26T12%3A04%3A47.114048Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50828756-abbb-4454-bb3a-67897d1f9af1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ada61a9-18c4-4b32-9f29-34ea71d9d32f?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/50828756-abbb-4454-bb3a-67897d1f9af1","name":"50828756-abbb-4454-bb3a-67897d1f9af1","status":"Succeeded","startTime":"2019-02-05T14:44:07.2532307Z","endTime":"2019-02-05T14:44:07.7743171Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4ada61a9-18c4-4b32-9f29-34ea71d9d32f","name":"4ada61a9-18c4-4b32-9f29-34ea71d9d32f","status":"Succeeded","startTime":"2019-03-26T12:04:47.0425807Z","endTime":"2019-03-26T12:04:47.4644655Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:44:39 GMT'] + date: ['Tue, 26 Mar 2019 12:05:20 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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A44%3A07.8246106Z''\"","location":"westus2","properties":{"poolId":"7037ac22-ac2a-eddf-6aea-eb9876913320","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T12%3A04%3A47.5573634Z''\"","location":"westus2","properties":{"poolId":"845aa99f-7b8a-412c-9b48-8e2ca179b2cf","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:44:40 GMT'] - etag: [W/"datetime'2019-02-05T14%3A44%3A07.8246106Z'"] + date: ['Tue, 26 Mar 2019 12:05:22 GMT'] + etag: [W/"datetime'2019-03-26T12%3A04%3A47.5573634Z'"] 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] @@ -179,25 +191,27 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A44%3A54.6226312Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A05%3A35.1114839Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e8c0f158-8a6d-423c-851d-053b7abb04f5?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:44:54 GMT'] - etag: [W/"datetime'2019-02-05T14%3A44%3A54.6226312Z'"] + date: ['Tue, 26 Mar 2019 12:05:35 GMT'] + etag: [W/"datetime'2019-03-26T12%3A05%3A35.1114839Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -207,18 +221,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e8c0f158-8a6d-423c-851d-053b7abb04f5?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e8c0f158-8a6d-423c-851d-053b7abb04f5","name":"e8c0f158-8a6d-423c-851d-053b7abb04f5","status":"Creating","startTime":"2019-02-05T14:44:54.5649322Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355","name":"02efd99d-c62d-4364-aa48-6110663e6355","status":"Creating","startTime":"2019-03-26T12:05:35.0577065Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:45:25 GMT'] + date: ['Tue, 26 Mar 2019 12:06:08 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -233,18 +249,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e8c0f158-8a6d-423c-851d-053b7abb04f5?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e8c0f158-8a6d-423c-851d-053b7abb04f5","name":"e8c0f158-8a6d-423c-851d-053b7abb04f5","status":"Succeeded","startTime":"2019-02-05T14:44:54.5649322Z","endTime":"2019-02-05T14:45:27.5194945Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355","name":"02efd99d-c62d-4364-aa48-6110663e6355","status":"Creating","startTime":"2019-03-26T12:05:35.0577065Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:45:58 GMT'] + date: ['Tue, 26 Mar 2019 12:06:39 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -259,19 +277,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A45%3A27.5490963Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"3bc41cbd-1e3e-821b-a60f-7f9fa6014294","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_0b45eef7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"428634e2-4326-90a6-1fa6-9c1ccd6f2a69","fileSystemId":"3bc41cbd-1e3e-821b-a60f-7f9fa6014294","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355","name":"02efd99d-c62d-4364-aa48-6110663e6355","status":"Creating","startTime":"2019-03-26T12:05:35.0577065Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1424'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:45:58 GMT'] - etag: [W/"datetime'2019-02-05T14%3A45%3A27.5490963Z'"] + date: ['Tue, 26 Mar 2019 12:07:11 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -286,20 +305,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A45%3A27.5490963Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"3bc41cbd-1e3e-821b-a60f-7f9fa6014294","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_0b45eef7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"428634e2-4326-90a6-1fa6-9c1ccd6f2a69","fileSystemId":"3bc41cbd-1e3e-821b-a60f-7f9fa6014294","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355","name":"02efd99d-c62d-4364-aa48-6110663e6355","status":"Creating","startTime":"2019-03-26T12:05:35.0577065Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1424'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:46:05 GMT'] - etag: [W/"datetime'2019-02-05T14%3A45%3A27.5490963Z'"] + date: ['Tue, 26 Mar 2019 12:07:43 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] @@ -308,36 +327,33 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"properties": {"fileSystemId": "3bc41cbd-1e3e-821b-a60f-7f9fa6014294"}, - "location": "westus2"}' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['95'] - Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A46%3A08.8682139Z''\"","location":"westus2","properties":{"fileSystemId":"3bc41cbd-1e3e-821b-a60f-7f9fa6014294","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/02efd99d-c62d-4364-aa48-6110663e6355","name":"02efd99d-c62d-4364-aa48-6110663e6355","status":"Succeeded","startTime":"2019-03-26T12:05:35.0577065Z","endTime":"2019-03-26T12:08:04.2931133Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211a8e19-f8e3-43f5-a7a5-e063f951c442?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['590'] + content-length: ['571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:46:08 GMT'] - etag: [W/"datetime'2019-02-05T14%3A46%3A08.8682139Z'"] + date: ['Tue, 26 Mar 2019 12:08:16 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1193'] x-powered-by: [ASP.NET] - status: {code: 201, message: Created} + status: {code: 200, message: OK} - request: body: null headers: @@ -345,18 +361,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211a8e19-f8e3-43f5-a7a5-e063f951c442?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/211a8e19-f8e3-43f5-a7a5-e063f951c442","name":"211a8e19-f8e3-43f5-a7a5-e063f951c442","status":"Succeeded","startTime":"2019-02-05T14:46:08.8099595Z","endTime":"2019-02-05T14:46:11.742217Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A08%3A04.3257832Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"40a48f3d-5c46-0edf-7f3d-141f6abae81c","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_f4d056fe","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f74ebe57-2819-29d7-7727-65bde50c7c1a","fileSystemId":"40a48f3d-5c46-0edf-7f3d-141f6abae81c","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['604'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:46:39 GMT'] + date: ['Tue, 26 Mar 2019 12:08:18 GMT'] + etag: [W/"datetime'2019-03-26T12%3A08%3A04.3257832Z'"] 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] @@ -371,19 +390,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A46%3A11.8072855Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"c85fb8f1-11b1-3d02-db3b-181f3ab5e82f","fileSystemId":"3bc41cbd-1e3e-821b-a60f-7f9fa6014294","name":"sdk-py-tests-snapshot-1","created":"2019-02-05T14:46:09Z"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A08%3A04.3257832Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"40a48f3d-5c46-0edf-7f3d-141f6abae81c","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_f4d056fe","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"f74ebe57-2819-29d7-7727-65bde50c7c1a","fileSystemId":"40a48f3d-5c46-0edf-7f3d-141f6abae81c","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['709'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:46:41 GMT'] - etag: [W/"datetime'2019-02-05T14%3A46%3A11.8072855Z'"] + date: ['Tue, 26 Mar 2019 12:08:25 GMT'] + etag: [W/"datetime'2019-03-26T12%3A08%3A04.3257832Z'"] 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] @@ -392,84 +414,92 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: !!python/unicode '{"properties": {"fileSystemId": "40a48f3d-5c46-0edf-7f3d-141f6abae81c"}, + "location": "westus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] + Content-Length: ['95'] + Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2017-08-15 + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A46%3A11.8072855Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"c85fb8f1-11b1-3d02-db3b-181f3ab5e82f","fileSystemId":"3bc41cbd-1e3e-821b-a60f-7f9fa6014294","name":"sdk-py-tests-snapshot-1","created":"2019-02-05T14:46:09Z"}}]}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","etag":"3/26/2019 + 12:08:33 PM","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"305c3dfd-113f-0c79-5384-c9efb93a3b3b","fileSystemId":"40a48f3d-5c46-0edf-7f3d-141f6abae81c","name":"sdk-py-tests-snapshot-1","created":"2019-03-26T12:08:31Z"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['721'] + content-length: ['682'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:46:43 GMT'] + date: ['Tue, 26 Mar 2019 12:08: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-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2017-08-15 response: - body: {string: !!python/unicode ''} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"305c3dfd-113f-0c79-5384-c9efb93a3b3b","fileSystemId":"40a48f3d-5c46-0edf-7f3d-141f6abae81c","name":"sdk-py-tests-snapshot-1","created":"2019-03-26T12:08:31Z"}}]}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5c34346d-06a9-4ccb-9096-5569810474bf?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:46:45 GMT'] + content-length: ['663'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 12:08:36 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5c34346d-06a9-4ccb-9096-5569810474bf?api-version=2017-08-15&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] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14994'] x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} + 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/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5c34346d-06a9-4ccb-9096-5569810474bf?api-version=2017-08-15 + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5c34346d-06a9-4ccb-9096-5569810474bf","name":"5c34346d-06a9-4ccb-9096-5569810474bf","status":"Succeeded","startTime":"2019-02-05T14:46:45.3196497Z","endTime":"2019-02-05T14:46:49.4961665Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1"}}'} + body: {string: !!python/unicode ''} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['605'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:47:15 GMT'] + content-length: ['0'] + date: ['Tue, 26 Mar 2019 12:08:44 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -479,19 +509,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2017-08-15 response: body: {string: !!python/unicode '{"value":[]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:47:17 GMT'] + date: ['Tue, 26 Mar 2019 12:08:47 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] @@ -507,24 +539,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cf2bf16-9e30-448e-bc01-70455087381d?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56cd5116-35c6-4d70-9d8e-60d40329eb21?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:47:19 GMT'] + date: ['Tue, 26 Mar 2019 12:08:51 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cf2bf16-9e30-448e-bc01-70455087381d?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56cd5116-35c6-4d70-9d8e-60d40329eb21?api-version=2017-08-15&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: ['14995'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -534,18 +568,48 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56cd5116-35c6-4d70-9d8e-60d40329eb21?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56cd5116-35c6-4d70-9d8e-60d40329eb21","name":"56cd5116-35c6-4d70-9d8e-60d40329eb21","status":"Deleting","startTime":"2019-03-26T12:08:51.1503332Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 12:09:22 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cf2bf16-9e30-448e-bc01-70455087381d?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56cd5116-35c6-4d70-9d8e-60d40329eb21?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cf2bf16-9e30-448e-bc01-70455087381d","name":"4cf2bf16-9e30-448e-bc01-70455087381d","status":"Deleting","startTime":"2019-02-05T14:47:20.1864252Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56cd5116-35c6-4d70-9d8e-60d40329eb21","name":"56cd5116-35c6-4d70-9d8e-60d40329eb21","status":"Deleting","startTime":"2019-03-26T12:08:51.1503332Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:47:50 GMT'] + date: ['Tue, 26 Mar 2019 12:09:54 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] @@ -560,18 +624,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cf2bf16-9e30-448e-bc01-70455087381d?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56cd5116-35c6-4d70-9d8e-60d40329eb21?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4cf2bf16-9e30-448e-bc01-70455087381d","name":"4cf2bf16-9e30-448e-bc01-70455087381d","status":"Succeeded","startTime":"2019-02-05T14:47:20.1864252Z","endTime":"2019-02-05T14:48:05.0884942Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/56cd5116-35c6-4d70-9d8e-60d40329eb21","name":"56cd5116-35c6-4d70-9d8e-60d40329eb21","status":"Succeeded","startTime":"2019-03-26T12:08:51.1503332Z","endTime":"2019-03-26T12:09:56.5747429Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:48:22 GMT'] + date: ['Tue, 26 Mar 2019 12:10: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] @@ -586,7 +652,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 @@ -598,7 +664,7 @@ interactions: cache-control: [no-cache] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:48:28 GMT'] + date: ['Tue, 26 Mar 2019 12:10:32 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -613,24 +679,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f55afdb-be9d-4561-9d47-f848977bea13?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd847858-613d-465f-b566-83cee67f513e?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:48:31 GMT'] + date: ['Tue, 26 Mar 2019 12:10:35 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f55afdb-be9d-4561-9d47-f848977bea13?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd847858-613d-465f-b566-83cee67f513e?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -640,18 +708,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f55afdb-be9d-4561-9d47-f848977bea13?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd847858-613d-465f-b566-83cee67f513e?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5f55afdb-be9d-4561-9d47-f848977bea13","name":"5f55afdb-be9d-4561-9d47-f848977bea13","status":"Succeeded","startTime":"2019-02-05T14:48:30.8645089Z","endTime":"2019-02-05T14:48:34.4678554Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cd847858-613d-465f-b566-83cee67f513e","name":"cd847858-613d-465f-b566-83cee67f513e","status":"Succeeded","startTime":"2019-03-26T12:10:35.1912394Z","endTime":"2019-03-26T12:10:39.0048058Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:49:02 GMT'] + date: ['Tue, 26 Mar 2019 12:11:07 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] @@ -666,7 +736,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -678,7 +748,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:49:07 GMT'] + date: ['Tue, 26 Mar 2019 12:11:13 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -693,20 +763,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d791f7b9-2490-4397-8940-cafda0e23826?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b42021bd-f156-4148-b891-7528324f8e97?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:49:08 GMT'] + date: ['Tue, 26 Mar 2019 12:11:16 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d791f7b9-2490-4397-8940-cafda0e23826?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b42021bd-f156-4148-b891-7528324f8e97?api-version=2017-08-15&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] @@ -720,18 +792,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d791f7b9-2490-4397-8940-cafda0e23826?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b42021bd-f156-4148-b891-7528324f8e97?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d791f7b9-2490-4397-8940-cafda0e23826","name":"d791f7b9-2490-4397-8940-cafda0e23826","status":"Succeeded","startTime":"2019-02-05T14:49:09.4046663Z","endTime":"2019-02-05T14:49:09.4696785Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b42021bd-f156-4148-b891-7528324f8e97","name":"b42021bd-f156-4148-b891-7528324f8e97","status":"Succeeded","startTime":"2019-03-26T12:11:17.1079481Z","endTime":"2019-03-26T12:11:17.1704136Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:49:40 GMT'] + date: ['Tue, 26 Mar 2019 12:11:48 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] @@ -746,7 +820,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -758,7 +832,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:49:43 GMT'] + date: ['Tue, 26 Mar 2019 12:11:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml b/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml index 335d30c7a6bd..18ca2d3fd660 100644 --- a/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_snapshot.test_get_snapshot_by_name.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A49%3A48.5574781Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T12%3A11%3A58.3024662Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77e00090-3c4a-4143-bd0e-b458baab5f52?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24efa558-5ec8-424b-84e9-54b37a1f8ab1?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:49:48 GMT'] - etag: [W/"datetime'2019-02-05T14%3A49%3A48.5574781Z'"] + date: ['Tue, 26 Mar 2019 12:11:58 GMT'] + etag: [W/"datetime'2019-03-26T12%3A11%3A58.3024662Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77e00090-3c4a-4143-bd0e-b458baab5f52?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24efa558-5ec8-424b-84e9-54b37a1f8ab1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77e00090-3c4a-4143-bd0e-b458baab5f52","name":"77e00090-3c4a-4143-bd0e-b458baab5f52","status":"Succeeded","startTime":"2019-02-05T14:49:48.4867021Z","endTime":"2019-02-05T14:49:48.7991879Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/24efa558-5ec8-424b-84e9-54b37a1f8ab1","name":"24efa558-5ec8-424b-84e9-54b37a1f8ab1","status":"Succeeded","startTime":"2019-03-26T12:11:58.2405256Z","endTime":"2019-03-26T12:11:58.5373642Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:50:19 GMT'] + date: ['Tue, 26 Mar 2019 12:12:30 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A49%3A48.8436803Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T12%3A11%3A58.5946747Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:50:21 GMT'] - etag: [W/"datetime'2019-02-05T14%3A49%3A48.8436803Z'"] + date: ['Tue, 26 Mar 2019 12:12:32 GMT'] + etag: [W/"datetime'2019-03-26T12%3A11%3A58.5946747Z'"] 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] @@ -92,22 +98,24 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A50%3A24.6941307Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T12%3A12%3A39.0595016Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/838ca127-0a42-424a-8417-191409d0bbfd?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/99a8dcc6-6174-405a-92df-ff558fedae00?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:50:25 GMT'] - etag: [W/"datetime'2019-02-05T14%3A50%3A24.6941307Z'"] + date: ['Tue, 26 Mar 2019 12:12:39 GMT'] + etag: [W/"datetime'2019-03-26T12%3A12%3A39.0595016Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/838ca127-0a42-424a-8417-191409d0bbfd?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/99a8dcc6-6174-405a-92df-ff558fedae00?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/838ca127-0a42-424a-8417-191409d0bbfd","name":"838ca127-0a42-424a-8417-191409d0bbfd","status":"Succeeded","startTime":"2019-02-05T14:50:24.646952Z","endTime":"2019-02-05T14:50:25.1006328Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/99a8dcc6-6174-405a-92df-ff558fedae00","name":"99a8dcc6-6174-405a-92df-ff558fedae00","status":"Succeeded","startTime":"2019-03-26T12:12:39.0088292Z","endTime":"2019-03-26T12:12:39.3838049Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['543'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:50:56 GMT'] + date: ['Tue, 26 Mar 2019 12:13:12 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A50%3A25.1614632Z''\"","location":"westus2","properties":{"poolId":"54dd5880-3fca-5beb-0d6b-0a5ede9465f0","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T12%3A12%3A39.4327675Z''\"","location":"westus2","properties":{"poolId":"f46702f0-b486-b672-610d-1becd9fbcb0f","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:50:57 GMT'] - etag: [W/"datetime'2019-02-05T14%3A50%3A25.1614632Z'"] + date: ['Tue, 26 Mar 2019 12:13:13 GMT'] + etag: [W/"datetime'2019-03-26T12%3A12%3A39.4327675Z'"] 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] @@ -179,21 +191,23 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A51%3A12.3249456Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A13%3A29.2233521Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a182bc21-96d1-4fa1-896f-7d5732834025?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:51:12 GMT'] - etag: [W/"datetime'2019-02-05T14%3A51%3A12.3249456Z'"] + date: ['Tue, 26 Mar 2019 12:13:29 GMT'] + etag: [W/"datetime'2019-03-26T12%3A13%3A29.2233521Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -207,18 +221,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a182bc21-96d1-4fa1-896f-7d5732834025?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a182bc21-96d1-4fa1-896f-7d5732834025","name":"a182bc21-96d1-4fa1-896f-7d5732834025","status":"Creating","startTime":"2019-02-05T14:51:12.2712794Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47","name":"856f6eae-a4da-4566-8296-7b9bff939b47","status":"Creating","startTime":"2019-03-26T12:13:29.1816382Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:51:43 GMT'] + date: ['Tue, 26 Mar 2019 12:14:01 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -233,18 +249,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a182bc21-96d1-4fa1-896f-7d5732834025?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a182bc21-96d1-4fa1-896f-7d5732834025","name":"a182bc21-96d1-4fa1-896f-7d5732834025","status":"Succeeded","startTime":"2019-02-05T14:51:12.2712794Z","endTime":"2019-02-05T14:51:47.8099322Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47","name":"856f6eae-a4da-4566-8296-7b9bff939b47","status":"Creating","startTime":"2019-03-26T12:13:29.1816382Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:52:15 GMT'] + date: ['Tue, 26 Mar 2019 12:14: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] @@ -259,19 +277,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A51%3A47.8391551Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"b6877163-6259-9dfa-284c-9796fabb916b","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_f3bffae9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"deaf96db-23f6-cc3c-d767-8131b47cf69b","fileSystemId":"b6877163-6259-9dfa-284c-9796fabb916b","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47","name":"856f6eae-a4da-4566-8296-7b9bff939b47","status":"Creating","startTime":"2019-03-26T12:13:29.1816382Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1424'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:52:16 GMT'] - etag: [W/"datetime'2019-02-05T14%3A51%3A47.8391551Z'"] + date: ['Tue, 26 Mar 2019 12:15:05 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] @@ -286,20 +305,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A51%3A47.8391551Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"b6877163-6259-9dfa-284c-9796fabb916b","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_f3bffae9","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"deaf96db-23f6-cc3c-d767-8131b47cf69b","fileSystemId":"b6877163-6259-9dfa-284c-9796fabb916b","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47","name":"856f6eae-a4da-4566-8296-7b9bff939b47","status":"Creating","startTime":"2019-03-26T12:13:29.1816382Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1424'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:52:23 GMT'] - etag: [W/"datetime'2019-02-05T14%3A51%3A47.8391551Z'"] + date: ['Tue, 26 Mar 2019 12:15:36 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -307,37 +326,6 @@ interactions: x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} -- request: - body: !!python/unicode '{"properties": {"fileSystemId": "b6877163-6259-9dfa-284c-9796fabb916b"}, - "location": "westus2"}' - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - Content-Length: ['95'] - Content-Type: [application/json; charset=utf-8] - User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 - response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A52%3A27.0740087Z''\"","location":"westus2","properties":{"fileSystemId":"b6877163-6259-9dfa-284c-9796fabb916b","provisioningState":"Creating"}}'} - headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/308fb942-16b3-4de4-92c3-4c542eef34c1?api-version=2017-08-15'] - cache-control: [no-cache] - content-length: ['590'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:52:27 GMT'] - etag: [W/"datetime'2019-02-05T14%3A52%3A27.0740087Z'"] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] - x-powered-by: [ASP.NET] - status: {code: 201, message: Created} - request: body: null headers: @@ -345,18 +333,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/308fb942-16b3-4de4-92c3-4c542eef34c1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/308fb942-16b3-4de4-92c3-4c542eef34c1","name":"308fb942-16b3-4de4-92c3-4c542eef34c1","status":"Succeeded","startTime":"2019-02-05T14:52:27.0177336Z","endTime":"2019-02-05T14:52:29.9223274Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/856f6eae-a4da-4566-8296-7b9bff939b47","name":"856f6eae-a4da-4566-8296-7b9bff939b47","status":"Succeeded","startTime":"2019-03-26T12:13:29.1816382Z","endTime":"2019-03-26T12:16:03.4142366Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['605'] + content-length: ['571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:52:58 GMT'] + date: ['Tue, 26 Mar 2019 12:16:09 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -371,19 +361,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A52%3A29.9710672Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"6fcdd77d-ea6d-2d96-1ddf-7a28cad59b3e","fileSystemId":"b6877163-6259-9dfa-284c-9796fabb916b","name":"sdk-py-tests-snapshot-1","created":"2019-02-05T14:52:27Z"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A16%3A03.4428275Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"b436904a-0eaa-6ef1-e2e7-af7c5ed83e3a","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_7d2e128c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"de0fee28-0dd4-cf3d-766a-d4edd85464b6","fileSystemId":"b436904a-0eaa-6ef1-e2e7-af7c5ed83e3a","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['709'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:52:59 GMT'] - etag: [W/"datetime'2019-02-05T14%3A52%3A29.9710672Z'"] + date: ['Tue, 26 Mar 2019 12:16:11 GMT'] + etag: [W/"datetime'2019-03-26T12%3A16%3A03.4428275Z'"] 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] @@ -398,20 +390,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A52%3A29.9710672Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"6fcdd77d-ea6d-2d96-1ddf-7a28cad59b3e","fileSystemId":"b6877163-6259-9dfa-284c-9796fabb916b","name":"sdk-py-tests-snapshot-1","created":"2019-02-05T14:52:27Z"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A16%3A03.4428275Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"b436904a-0eaa-6ef1-e2e7-af7c5ed83e3a","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_7d2e128c","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"de0fee28-0dd4-cf3d-766a-d4edd85464b6","fileSystemId":"b436904a-0eaa-6ef1-e2e7-af7c5ed83e3a","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['709'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:53:00 GMT'] - etag: [W/"datetime'2019-02-05T14%3A52%3A29.9710672Z'"] + date: ['Tue, 26 Mar 2019 12:16:17 GMT'] + etag: [W/"datetime'2019-03-26T12%3A16%3A03.4428275Z'"] 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] @@ -420,33 +414,37 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: !!python/unicode '{"properties": {"fileSystemId": "b436904a-0eaa-6ef1-e2e7-af7c5ed83e3a"}, + "location": "westus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['0'] + Content-Length: ['95'] + Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] - method: DELETE + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 response: - body: {string: !!python/unicode ''} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","etag":"3/26/2019 + 12:16:26 PM","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"4a1f8662-8e25-bbde-0025-8b7c35a67758","fileSystemId":"b436904a-0eaa-6ef1-e2e7-af7c5ed83e3a","name":"sdk-py-tests-snapshot-1","created":"2019-03-26T12:16:23Z"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab9b840c-228f-4e18-b3ae-9d2260622c9f?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:53:01 GMT'] + content-length: ['682'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 12:16:26 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab9b840c-228f-4e18-b3ae-9d2260622c9f?api-version=2017-08-15&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-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} + status: {code: 201, message: Created} - request: body: null headers: @@ -454,18 +452,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab9b840c-228f-4e18-b3ae-9d2260622c9f?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ab9b840c-228f-4e18-b3ae-9d2260622c9f","name":"ab9b840c-228f-4e18-b3ae-9d2260622c9f","status":"Succeeded","startTime":"2019-02-05T14:53:01.9314678Z","endTime":"2019-02-05T14:53:05.7778053Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"4a1f8662-8e25-bbde-0025-8b7c35a67758","fileSystemId":"b436904a-0eaa-6ef1-e2e7-af7c5ed83e3a","name":"sdk-py-tests-snapshot-1","created":"2019-03-26T12:16:23Z"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['605'] + content-length: ['651'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:53:33 GMT'] + date: ['Tue, 26 Mar 2019 12:16:28 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] @@ -481,52 +482,56 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/376d3a1a-0003-46e6-9010-f722c04a9d02?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:53:38 GMT'] + date: ['Tue, 26 Mar 2019 12:16:36 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/376d3a1a-0003-46e6-9010-f722c04a9d02?api-version=2017-08-15&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: ['14996'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} + 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/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/376d3a1a-0003-46e6-9010-f722c04a9d02?api-version=2017-08-15 + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/376d3a1a-0003-46e6-9010-f722c04a9d02","name":"376d3a1a-0003-46e6-9010-f722c04a9d02","status":"Deleting","startTime":"2019-02-05T14:53:39.444571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode ''} headers: + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87765c7f-a65f-401c-a5d9-fd696e6abb07?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['559'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:54:10 GMT'] + content-length: ['0'] + date: ['Tue, 26 Mar 2019 12:16:43 GMT'] expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87765c7f-a65f-401c-a5d9-fd696e6abb07?api-version=2017-08-15&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] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 202, message: Accepted} - request: body: null headers: @@ -534,18 +539,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/376d3a1a-0003-46e6-9010-f722c04a9d02?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87765c7f-a65f-401c-a5d9-fd696e6abb07?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/376d3a1a-0003-46e6-9010-f722c04a9d02","name":"376d3a1a-0003-46e6-9010-f722c04a9d02","status":"Deleting","startTime":"2019-02-05T14:53:39.444571Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87765c7f-a65f-401c-a5d9-fd696e6abb07","name":"87765c7f-a65f-401c-a5d9-fd696e6abb07","status":"Deleting","startTime":"2019-03-26T12:16:44.5318653Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['559'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:54:41 GMT'] + date: ['Tue, 26 Mar 2019 12:17:17 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] @@ -560,18 +567,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/376d3a1a-0003-46e6-9010-f722c04a9d02?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87765c7f-a65f-401c-a5d9-fd696e6abb07?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/376d3a1a-0003-46e6-9010-f722c04a9d02","name":"376d3a1a-0003-46e6-9010-f722c04a9d02","status":"Succeeded","startTime":"2019-02-05T14:53:39.444571Z","endTime":"2019-02-05T14:54:45.5870841Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/87765c7f-a65f-401c-a5d9-fd696e6abb07","name":"87765c7f-a65f-401c-a5d9-fd696e6abb07","status":"Succeeded","startTime":"2019-03-26T12:16:44.5318653Z","endTime":"2019-03-26T12:17:49.0560542Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:55:13 GMT'] + date: ['Tue, 26 Mar 2019 12:17:49 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] @@ -586,7 +595,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 @@ -598,7 +607,7 @@ interactions: cache-control: [no-cache] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:55:19 GMT'] + date: ['Tue, 26 Mar 2019 12:17:55 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -613,24 +622,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07d1d095-9aab-4bde-970e-b30149cb17aa?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f2d90c2-1c1f-4acc-8ea0-28b15f19baae?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:55:21 GMT'] + date: ['Tue, 26 Mar 2019 12:17:58 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07d1d095-9aab-4bde-970e-b30149cb17aa?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f2d90c2-1c1f-4acc-8ea0-28b15f19baae?api-version=2017-08-15&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: ['14996'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -640,18 +651,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07d1d095-9aab-4bde-970e-b30149cb17aa?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f2d90c2-1c1f-4acc-8ea0-28b15f19baae?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/07d1d095-9aab-4bde-970e-b30149cb17aa","name":"07d1d095-9aab-4bde-970e-b30149cb17aa","status":"Succeeded","startTime":"2019-02-05T14:55:22.2527577Z","endTime":"2019-02-05T14:55:25.7045385Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f2d90c2-1c1f-4acc-8ea0-28b15f19baae","name":"9f2d90c2-1c1f-4acc-8ea0-28b15f19baae","status":"Succeeded","startTime":"2019-03-26T12:17:58.4382445Z","endTime":"2019-03-26T12:18:01.6290835Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:55:53 GMT'] + date: ['Tue, 26 Mar 2019 12:18:29 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -666,7 +679,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -678,7 +691,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:55:59 GMT'] + date: ['Tue, 26 Mar 2019 12:18:35 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -693,20 +706,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ff0ae7d1-3683-447a-931e-9a207a37c739?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a32762c0-cf79-4e85-a24b-7bb74c2cc0d4?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:56:01 GMT'] + date: ['Tue, 26 Mar 2019 12:18:37 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ff0ae7d1-3683-447a-931e-9a207a37c739?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a32762c0-cf79-4e85-a24b-7bb74c2cc0d4?api-version=2017-08-15&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] @@ -720,18 +735,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ff0ae7d1-3683-447a-931e-9a207a37c739?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a32762c0-cf79-4e85-a24b-7bb74c2cc0d4?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ff0ae7d1-3683-447a-931e-9a207a37c739","name":"ff0ae7d1-3683-447a-931e-9a207a37c739","status":"Succeeded","startTime":"2019-02-05T14:56:01.673403Z","endTime":"2019-02-05T14:56:01.740135Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a32762c0-cf79-4e85-a24b-7bb74c2cc0d4","name":"a32762c0-cf79-4e85-a24b-7bb74c2cc0d4","status":"Succeeded","startTime":"2019-03-26T12:18:37.6761141Z","endTime":"2019-03-26T12:18:37.7542559Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['508'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:56:32 GMT'] + date: ['Tue, 26 Mar 2019 12:19:08 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -746,7 +763,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -758,7 +775,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:56:35 GMT'] + date: ['Tue, 26 Mar 2019 12:19:11 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml b/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml index f775e3f2a366..981e392f7b25 100644 --- a/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_snapshot.test_list_snapshots.yaml @@ -8,21 +8,23 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A56%3A41.1974181Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T12%3A19%3A16.4270656Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7126bdbb-dc5b-48a8-9fb9-c124c380bff3?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88db00e4-fb9f-48eb-b230-d1fd54cf32f6?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:56:41 GMT'] - etag: [W/"datetime'2019-02-05T14%3A56%3A41.1974181Z'"] + date: ['Tue, 26 Mar 2019 12:19:16 GMT'] + etag: [W/"datetime'2019-03-26T12%3A19%3A16.4270656Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7126bdbb-dc5b-48a8-9fb9-c124c380bff3?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88db00e4-fb9f-48eb-b230-d1fd54cf32f6?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7126bdbb-dc5b-48a8-9fb9-c124c380bff3","name":"7126bdbb-dc5b-48a8-9fb9-c124c380bff3","status":"Succeeded","startTime":"2019-02-05T14:56:41.1555747Z","endTime":"2019-02-05T14:56:41.4429081Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/88db00e4-fb9f-48eb-b230-d1fd54cf32f6","name":"88db00e4-fb9f-48eb-b230-d1fd54cf32f6","status":"Succeeded","startTime":"2019-03-26T12:19:16.3822235Z","endTime":"2019-03-26T12:19:16.663532Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['510'] + content-length: ['509'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:57:13 GMT'] + date: ['Tue, 26 Mar 2019 12:19:48 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] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A56%3A41.4896262Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T12%3A19%3A16.7152709Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:57:14 GMT'] - etag: [W/"datetime'2019-02-05T14%3A56%3A41.4896262Z'"] + date: ['Tue, 26 Mar 2019 12:19:51 GMT'] + etag: [W/"datetime'2019-03-26T12%3A19%3A16.7152709Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A57%3A17.9384999Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T12%3A19%3A54.8335802Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/050019a2-7769-4bea-949d-19f24b9e0ac8?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b88a7fd7-5344-40d2-8fc0-ae3ab17efd80?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:57:18 GMT'] - etag: [W/"datetime'2019-02-05T14%3A57%3A17.9384999Z'"] + date: ['Tue, 26 Mar 2019 12:19:55 GMT'] + etag: [W/"datetime'2019-03-26T12%3A19%3A54.8335802Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/050019a2-7769-4bea-949d-19f24b9e0ac8?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b88a7fd7-5344-40d2-8fc0-ae3ab17efd80?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/050019a2-7769-4bea-949d-19f24b9e0ac8","name":"050019a2-7769-4bea-949d-19f24b9e0ac8","status":"Succeeded","startTime":"2019-02-05T14:57:17.8949302Z","endTime":"2019-02-05T14:57:18.377481Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b88a7fd7-5344-40d2-8fc0-ae3ab17efd80","name":"b88a7fd7-5344-40d2-8fc0-ae3ab17efd80","status":"Succeeded","startTime":"2019-03-26T12:19:54.7136446Z","endTime":"2019-03-26T12:19:55.157445Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['543'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:57:49 GMT'] + date: ['Tue, 26 Mar 2019 12:20:27 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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A57%3A18.4378548Z''\"","location":"westus2","properties":{"poolId":"2249ef6b-66ea-13eb-0bc4-a0ebdc88265c","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T12%3A19%3A55.210849Z''\"","location":"westus2","properties":{"poolId":"cbbbd7f2-11ae-c8bc-e2ad-4fb762326cac","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: ['557'] + content-length: ['556'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:57:50 GMT'] - etag: [W/"datetime'2019-02-05T14%3A57%3A18.4378548Z'"] + date: ['Tue, 26 Mar 2019 12:20:29 GMT'] + etag: [W/"datetime'2019-03-26T12%3A19%3A55.210849Z'"] 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] @@ -179,25 +191,27 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A58%3A04.7977661Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A20%3A45.3316066Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cab9445f-0031-4690-b376-58a667f99515?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:58:05 GMT'] - etag: [W/"datetime'2019-02-05T14%3A58%3A04.7977661Z'"] + date: ['Tue, 26 Mar 2019 12:20:45 GMT'] + etag: [W/"datetime'2019-03-26T12%3A20%3A45.3316066Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -207,18 +221,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cab9445f-0031-4690-b376-58a667f99515?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cab9445f-0031-4690-b376-58a667f99515","name":"cab9445f-0031-4690-b376-58a667f99515","status":"Succeeded","startTime":"2019-02-05T14:58:04.754387Z","endTime":"2019-02-05T14:58:34.8980977Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","name":"8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","status":"Creating","startTime":"2019-03-26T12:20:45.2963045Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:58:36 GMT'] + date: ['Tue, 26 Mar 2019 12:21:18 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -233,19 +249,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A58%3A34.929156Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1ca45494","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ca8fc001-3d6a-5736-54c1-f799201901a3","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","name":"8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","status":"Creating","startTime":"2019-03-26T12:20:45.2963045Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1423'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:58:37 GMT'] - etag: [W/"datetime'2019-02-05T14%3A58%3A34.929156Z'"] + date: ['Tue, 26 Mar 2019 12:21:50 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] @@ -260,20 +277,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A58%3A34.929156Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1ca45494","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ca8fc001-3d6a-5736-54c1-f799201901a3","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","name":"8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","status":"Creating","startTime":"2019-03-26T12:20:45.2963045Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1423'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:58:43 GMT'] - etag: [W/"datetime'2019-02-05T14%3A58%3A34.929156Z'"] + date: ['Tue, 26 Mar 2019 12:22:21 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -282,36 +299,33 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"properties": {"fileSystemId": "ebd6d95d-5794-556d-3a13-8cd8aab5ac0a"}, - "location": "westus2"}' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['95'] - Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A58%3A47.3209507Z''\"","location":"westus2","properties":{"fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","name":"8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","status":"Creating","startTime":"2019-03-26T12:20:45.2963045Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70ed01d2-785c-41ee-957a-317f08b623cc?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['590'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:58:47 GMT'] - etag: [W/"datetime'2019-02-05T14%3A58%3A47.3209507Z'"] + date: ['Tue, 26 Mar 2019 12:22:54 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] x-powered-by: [ASP.NET] - status: {code: 201, message: Created} + status: {code: 200, message: OK} - request: body: null headers: @@ -319,18 +333,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70ed01d2-785c-41ee-957a-317f08b623cc?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/70ed01d2-785c-41ee-957a-317f08b623cc","name":"70ed01d2-785c-41ee-957a-317f08b623cc","status":"Succeeded","startTime":"2019-02-05T14:58:47.2696616Z","endTime":"2019-02-05T14:58:47.9180551Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","name":"8a989bf8-e1dd-4ed3-8b04-f3dd6a8bfce7","status":"Succeeded","startTime":"2019-03-26T12:20:45.2963045Z","endTime":"2019-03-26T12:23:18.0299052Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['605'] + content-length: ['571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:59:18 GMT'] + date: ['Tue, 26 Mar 2019 12:23:25 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] @@ -345,19 +361,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A58%3A47.9714129Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"24f81400-34c8-0473-8120-3417d8bd6b28","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","name":"sdk-py-tests-snapshot-1","created":"2019-02-05T14:58:47Z"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A23%3A18.0644124Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_4182bbfc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b2bd42d2-c2de-a952-20e9-80da53d151ea","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['709'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:59:19 GMT'] - etag: [W/"datetime'2019-02-05T14%3A58%3A47.9714129Z'"] + date: ['Tue, 26 Mar 2019 12:23:28 GMT'] + etag: [W/"datetime'2019-03-26T12%3A23%3A18.0644124Z'"] 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] @@ -372,20 +390,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A58%3A34.929156Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1ca45494","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"ca8fc001-3d6a-5736-54c1-f799201901a3","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A23%3A18.0644124Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_4182bbfc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b2bd42d2-c2de-a952-20e9-80da53d151ea","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['1423'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:59:21 GMT'] - etag: [W/"datetime'2019-02-05T14%3A58%3A34.929156Z'"] + date: ['Tue, 26 Mar 2019 12:23:34 GMT'] + etag: [W/"datetime'2019-03-26T12%3A23%3A18.0644124Z'"] 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] @@ -394,7 +414,7 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"properties": {"fileSystemId": "ebd6d95d-5794-556d-3a13-8cd8aab5ac0a"}, + body: !!python/unicode '{"properties": {"fileSystemId": "fc41ba1b-629e-e966-9327-60480371d343"}, "location": "westus2"}' headers: Accept: [application/json] @@ -403,25 +423,26 @@ interactions: Content-Length: ['95'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A59%3A25.4920505Z''\"","location":"westus2","properties":{"fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","etag":"3/26/2019 + 12:23:42 PM","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"25183bc0-45cd-940b-3397-1c73ca1357e1","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","name":"sdk-py-tests-snapshot-1","created":"2019-03-26T12:23:40Z"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b1a569f-6e27-4a4e-8f4b-dcd2aba0918f?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['590'] + content-length: ['682'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:59:25 GMT'] - etag: [W/"datetime'2019-02-05T14%3A59%3A25.4920505Z'"] + date: ['Tue, 26 Mar 2019 12:23: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] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -431,18 +452,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b1a569f-6e27-4a4e-8f4b-dcd2aba0918f?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7b1a569f-6e27-4a4e-8f4b-dcd2aba0918f","name":"7b1a569f-6e27-4a4e-8f4b-dcd2aba0918f","status":"Succeeded","startTime":"2019-02-05T14:59:25.4494657Z","endTime":"2019-02-05T14:59:28.3177398Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-2"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T12%3A23%3A18.0644124Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_4182bbfc","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b2bd42d2-c2de-a952-20e9-80da53d151ea","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['605'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:59:56 GMT'] + date: ['Tue, 26 Mar 2019 12:23:44 GMT'] + etag: [W/"datetime'2019-03-26T12%3A23%3A18.0644124Z'"] 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] @@ -451,32 +476,37 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: null + body: !!python/unicode '{"properties": {"fileSystemId": "fc41ba1b-629e-e966-9327-60480371d343"}, + "location": "westus2"}' headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] + Content-Length: ['95'] + Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - method: GET + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + accept-language: [en-US] + method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A59%3A28.3660904Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"b6e4d8f6-7ba2-c47b-f8cd-2129cea27514","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","name":"sdk-py-tests-snapshot-2","created":"2019-02-05T14:59:25Z"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","etag":"3/26/2019 + 12:23:52 PM","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"5f887d7e-6455-69fc-4d02-df1c27738477","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","name":"sdk-py-tests-snapshot-2","created":"2019-03-26T12:23:49Z"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['709'] + content-length: ['682'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:59:57 GMT'] - etag: [W/"datetime'2019-02-05T14%3A59%3A28.3660904Z'"] + date: ['Tue, 26 Mar 2019 12:23:52 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] - status: {code: 200, message: OK} + status: {code: 201, message: Created} - request: body: null headers: @@ -484,19 +514,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A58%3A47.9714129Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"24f81400-34c8-0473-8120-3417d8bd6b28","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","name":"sdk-py-tests-snapshot-1","created":"2019-02-05T14:58:47Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes/Snapshots","etag":"W/\"datetime''2019-02-05T14%3A59%3A28.3660904Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"b6e4d8f6-7ba2-c47b-f8cd-2129cea27514","fileSystemId":"ebd6d95d-5794-556d-3a13-8cd8aab5ac0a","name":"sdk-py-tests-snapshot-2","created":"2019-02-05T14:59:25Z"}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"25183bc0-45cd-940b-3397-1c73ca1357e1","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","name":"sdk-py-tests-snapshot-1","created":"2019-03-26T12:23:40Z"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1/sdk-py-tests-snapshot-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes/snapshots","location":"westus2","properties":{"provisioningState":"Succeeded","snapshotId":"5f887d7e-6455-69fc-4d02-df1c27738477","fileSystemId":"fc41ba1b-629e-e966-9327-60480371d343","name":"sdk-py-tests-snapshot-2","created":"2019-03-26T12:23:49Z"}}]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['1431'] + content-length: ['1315'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:59:57 GMT'] + date: ['Tue, 26 Mar 2019 12:23:54 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] @@ -512,51 +544,25 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad44fd60-7b34-4a32-81ee-ee7ad403586f?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:00:00 GMT'] + date: ['Tue, 26 Mar 2019 12:24:02 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad44fd60-7b34-4a32-81ee-ee7ad403586f?api-version=2017-08-15&operationResultResponseType=Location'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad44fd60-7b34-4a32-81ee-ee7ad403586f?api-version=2017-08-15 - response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ad44fd60-7b34-4a32-81ee-ee7ad403586f","name":"ad44fd60-7b34-4a32-81ee-ee7ad403586f","status":"Succeeded","startTime":"2019-02-05T15:00:00.9915493Z","endTime":"2019-02-05T15:00:05.0847785Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-1"}}'} - headers: - cache-control: [no-cache] - content-length: ['605'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:00:31 GMT'] - expires: ['-1'] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] - x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: body: null @@ -566,50 +572,24 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1/snapshots/sdk-py-tests-snapshot-2?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2273074f-5c7d-4fa9-a0f1-a2fe2df2a9ed?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:00:37 GMT'] - expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2273074f-5c7d-4fa9-a0f1-a2fe2df2a9ed?api-version=2017-08-15&operationResultResponseType=Location'] - pragma: [no-cache] - server: [Microsoft-IIS/10.0] - strict-transport-security: [max-age=31536000; includeSubDomains] - x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14998'] - x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} -- request: - body: null - headers: - Accept: [application/json] - Accept-Encoding: ['gzip, deflate'] - Connection: [keep-alive] - User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2273074f-5c7d-4fa9-a0f1-a2fe2df2a9ed?api-version=2017-08-15 - response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2273074f-5c7d-4fa9-a0f1-a2fe2df2a9ed","name":"2273074f-5c7d-4fa9-a0f1-a2fe2df2a9ed","status":"Succeeded","startTime":"2019-02-05T15:00:37.7488044Z","endTime":"2019-02-05T15:00:41.9967146Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1/Snapshots/sdk-py-tests-snapshot-2"}}'} - headers: - cache-control: [no-cache] - content-length: ['605'] - content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:01:09 GMT'] + date: ['Tue, 26 Mar 2019 12:24:15 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] - transfer-encoding: [chunked] - vary: [Accept-Encoding] x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -620,24 +600,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65d7f451-2960-4e7c-a174-900d14ae0f62?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af4a2097-ad23-4227-acbe-46356eeb5ea6?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:01:16 GMT'] + date: ['Tue, 26 Mar 2019 12:24:21 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65d7f451-2960-4e7c-a174-900d14ae0f62?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af4a2097-ad23-4227-acbe-46356eeb5ea6?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -647,18 +629,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65d7f451-2960-4e7c-a174-900d14ae0f62?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af4a2097-ad23-4227-acbe-46356eeb5ea6?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65d7f451-2960-4e7c-a174-900d14ae0f62","name":"65d7f451-2960-4e7c-a174-900d14ae0f62","status":"Deleting","startTime":"2019-02-05T15:01:16.7223895Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af4a2097-ad23-4227-acbe-46356eeb5ea6","name":"af4a2097-ad23-4227-acbe-46356eeb5ea6","status":"Deleting","startTime":"2019-03-26T12:24:22.624858Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['560'] + content-length: ['559'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:01:48 GMT'] + date: ['Tue, 26 Mar 2019 12:24:53 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] @@ -673,18 +657,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65d7f451-2960-4e7c-a174-900d14ae0f62?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af4a2097-ad23-4227-acbe-46356eeb5ea6?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65d7f451-2960-4e7c-a174-900d14ae0f62","name":"65d7f451-2960-4e7c-a174-900d14ae0f62","status":"Succeeded","startTime":"2019-02-05T15:01:16.7223895Z","endTime":"2019-02-05T15:02:13.8738297Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/af4a2097-ad23-4227-acbe-46356eeb5ea6","name":"af4a2097-ad23-4227-acbe-46356eeb5ea6","status":"Succeeded","startTime":"2019-03-26T12:24:22.624858Z","endTime":"2019-03-26T12:25:20.6902181Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['570'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:02:19 GMT'] + date: ['Tue, 26 Mar 2019 12:25: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] @@ -699,25 +685,24 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: body: {string: !!python/unicode '{"error":{"code":"ResourceNotFound","message":"The - resource with identifier ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1'' - is not found."}}'} + 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-rg'' was not found."}}'} headers: cache-control: [no-cache] - content-length: ['299'] + content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:02:26 GMT'] + date: ['Tue, 26 Mar 2019 12:25:32 GMT'] expires: ['-1'] pragma: [no-cache] - server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-powered-by: [ASP.NET] + x-ms-failure-cause: [gateway] status: {code: 404, message: Not Found} - request: body: null @@ -727,24 +712,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e6ff2d1-4d48-4344-abc0-9ac63ab7d2a9?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9f83683-d52b-41c3-bb69-f606ed6e3b27?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:02:27 GMT'] + date: ['Tue, 26 Mar 2019 12:25:36 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e6ff2d1-4d48-4344-abc0-9ac63ab7d2a9?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9f83683-d52b-41c3-bb69-f606ed6e3b27?api-version=2017-08-15&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-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -754,18 +741,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e6ff2d1-4d48-4344-abc0-9ac63ab7d2a9?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9f83683-d52b-41c3-bb69-f606ed6e3b27?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/4e6ff2d1-4d48-4344-abc0-9ac63ab7d2a9","name":"4e6ff2d1-4d48-4344-abc0-9ac63ab7d2a9","status":"Succeeded","startTime":"2019-02-05T15:02:27.6867148Z","endTime":"2019-02-05T15:02:31.1724922Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c9f83683-d52b-41c3-bb69-f606ed6e3b27","name":"c9f83683-d52b-41c3-bb69-f606ed6e3b27","status":"Succeeded","startTime":"2019-03-26T12:25:36.0489562Z","endTime":"2019-03-26T12:25:39.1762721Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:02:58 GMT'] + date: ['Tue, 26 Mar 2019 12:26:08 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -780,7 +769,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -792,7 +781,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:03:04 GMT'] + date: ['Tue, 26 Mar 2019 12:26:14 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -807,24 +796,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04e32860-b42e-4453-aacd-7bf9602aef64?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acfd0ad3-8165-40f1-8ded-93cdf5519c67?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 15:03:06 GMT'] + date: ['Tue, 26 Mar 2019 12:26:17 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04e32860-b42e-4453-aacd-7bf9602aef64?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acfd0ad3-8165-40f1-8ded-93cdf5519c67?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -834,18 +825,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04e32860-b42e-4453-aacd-7bf9602aef64?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acfd0ad3-8165-40f1-8ded-93cdf5519c67?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/04e32860-b42e-4453-aacd-7bf9602aef64","name":"04e32860-b42e-4453-aacd-7bf9602aef64","status":"Succeeded","startTime":"2019-02-05T15:03:07.0274898Z","endTime":"2019-02-05T15:03:07.0905044Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/acfd0ad3-8165-40f1-8ded-93cdf5519c67","name":"acfd0ad3-8165-40f1-8ded-93cdf5519c67","status":"Succeeded","startTime":"2019-03-26T12:26:17.4436292Z","endTime":"2019-03-26T12:26:17.5217553Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:03:38 GMT'] + date: ['Tue, 26 Mar 2019 12:26:49 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] @@ -860,7 +853,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -872,7 +865,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 15:03:41 GMT'] + date: ['Tue, 26 Mar 2019 12:26:52 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml b/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml index f7c40fed8371..e1920c5bf329 100644 --- a/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_volume.test_create_delete_list_volume.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A11%3A18.782124Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T11%3A00%3A21.824478Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/485d8ac2-c090-4ff9-b8d2-1f9fbc81bd4d?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d436fecf-30ae-4d77-84b5-74c800572fd6?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['345'] + content-length: ['373'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:11:19 GMT'] - etag: [W/"datetime'2019-02-05T14%3A11%3A18.782124Z'"] + date: ['Tue, 26 Mar 2019 11:00:22 GMT'] + etag: [W/"datetime'2019-03-26T11%3A00%3A21.824478Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/485d8ac2-c090-4ff9-b8d2-1f9fbc81bd4d?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d436fecf-30ae-4d77-84b5-74c800572fd6?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/485d8ac2-c090-4ff9-b8d2-1f9fbc81bd4d","name":"485d8ac2-c090-4ff9-b8d2-1f9fbc81bd4d","status":"Succeeded","startTime":"2019-02-05T14:11:18.733415Z","endTime":"2019-02-05T14:11:19.0101616Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d436fecf-30ae-4d77-84b5-74c800572fd6","name":"d436fecf-30ae-4d77-84b5-74c800572fd6","status":"Succeeded","startTime":"2019-03-26T11:00:21.7648928Z","endTime":"2019-03-26T11:00:22.06177Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['509'] + content-length: ['508'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:11:50 GMT'] + date: ['Tue, 26 Mar 2019 11:00:54 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] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A11%3A19.0553169Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T11%3A00%3A22.1166857Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:11:52 GMT'] - etag: [W/"datetime'2019-02-05T14%3A11%3A19.0553169Z'"] + date: ['Tue, 26 Mar 2019 11:00:57 GMT'] + etag: [W/"datetime'2019-03-26T11%3A00%3A22.1166857Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A11%3A53.5366163Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T11%3A01%3A01.2475623Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c294f72a-08b2-4b80-bbff-1bad4d5d24db?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f85c5f1-4f23-4e9a-8b29-6a726ef43d57?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:11:53 GMT'] - etag: [W/"datetime'2019-02-05T14%3A11%3A53.5366163Z'"] + date: ['Tue, 26 Mar 2019 11:01:01 GMT'] + etag: [W/"datetime'2019-03-26T11%3A01%3A01.2475623Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c294f72a-08b2-4b80-bbff-1bad4d5d24db?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f85c5f1-4f23-4e9a-8b29-6a726ef43d57?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/c294f72a-08b2-4b80-bbff-1bad4d5d24db","name":"c294f72a-08b2-4b80-bbff-1bad4d5d24db","status":"Succeeded","startTime":"2019-02-05T14:11:53.4929527Z","endTime":"2019-02-05T14:11:54.037529Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9f85c5f1-4f23-4e9a-8b29-6a726ef43d57","name":"9f85c5f1-4f23-4e9a-8b29-6a726ef43d57","status":"Succeeded","startTime":"2019-03-26T11:01:01.1192773Z","endTime":"2019-03-26T11:01:01.8692447Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['543'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:12:25 GMT'] + date: ['Tue, 26 Mar 2019 11:01: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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A11%3A54.1070175Z''\"","location":"westus2","properties":{"poolId":"65bb9e73-dc86-d518-8e23-f3bf7da52770","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T11%3A01%3A02.0131081Z''\"","location":"westus2","properties":{"poolId":"ed0af18a-d8e6-c0c8-7156-2484315fcb12","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:12:25 GMT'] - etag: [W/"datetime'2019-02-05T14%3A11%3A54.1070175Z'"] + date: ['Tue, 26 Mar 2019 11:01:34 GMT'] + etag: [W/"datetime'2019-03-26T11%3A01%3A02.0131081Z'"] 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] @@ -179,25 +191,27 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A12%3A38.7604848Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A01%3A50.7328161Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0bff34-380e-4136-b097-351f353ff2e6?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:12:38 GMT'] - etag: [W/"datetime'2019-02-05T14%3A12%3A38.7604848Z'"] + date: ['Tue, 26 Mar 2019 11:01:51 GMT'] + etag: [W/"datetime'2019-03-26T11%3A01%3A50.7328161Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1195'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -207,18 +221,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0bff34-380e-4136-b097-351f353ff2e6?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0bff34-380e-4136-b097-351f353ff2e6","name":"5b0bff34-380e-4136-b097-351f353ff2e6","status":"Creating","startTime":"2019-02-05T14:12:38.7160041Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace","name":"bafe7bc5-e7ef-4677-998b-eaac63f19ace","status":"Creating","startTime":"2019-03-26T11:01:50.6534612Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:13:10 GMT'] + date: ['Tue, 26 Mar 2019 11:02:22 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] @@ -233,18 +249,104 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0bff34-380e-4136-b097-351f353ff2e6?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5b0bff34-380e-4136-b097-351f353ff2e6","name":"5b0bff34-380e-4136-b097-351f353ff2e6","status":"Succeeded","startTime":"2019-02-05T14:12:38.7160041Z","endTime":"2019-02-05T14:13:13.3158863Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace","name":"bafe7bc5-e7ef-4677-998b-eaac63f19ace","status":"Creating","startTime":"2019-03-26T11:01:50.6534612Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:02:55 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace","name":"bafe7bc5-e7ef-4677-998b-eaac63f19ace","status":"Creating","startTime":"2019-03-26T11:01:50.6534612Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:03:26 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] + server: [Microsoft-IIS/10.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace","name":"bafe7bc5-e7ef-4677-998b-eaac63f19ace","status":"Creating","startTime":"2019-03-26T11:01:50.6534612Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:03: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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafe7bc5-e7ef-4677-998b-eaac63f19ace","name":"bafe7bc5-e7ef-4677-998b-eaac63f19ace","status":"Succeeded","startTime":"2019-03-26T11:01:50.6534612Z","endTime":"2019-03-26T11:04:27.9764813Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:13:42 GMT'] + date: ['Tue, 26 Mar 2019 11:04:29 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -259,19 +361,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A13%3A13.3599578Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"aaf5f50c-0eaf-73a8-3122-9a98cdcc30e5","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_5e00285e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"49437428-0d64-f593-b308-50dce170d3d2","fileSystemId":"aaf5f50c-0eaf-73a8-3122-9a98cdcc30e5","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A04%3A28.0099078Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"79b5c3bb-2076-db9a-2f63-f9db9f6edd4b","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_e656b45d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b96cff82-96e0-e011-0950-6c177f09a518","fileSystemId":"79b5c3bb-2076-db9a-2f63-f9db9f6edd4b","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['1424'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:13:43 GMT'] - etag: [W/"datetime'2019-02-05T14%3A13%3A13.3599578Z'"] + date: ['Tue, 26 Mar 2019 11:04:31 GMT'] + etag: [W/"datetime'2019-03-26T11%3A04%3A28.0099078Z'"] 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] @@ -286,19 +390,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A13%3A13.3599578Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"aaf5f50c-0eaf-73a8-3122-9a98cdcc30e5","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_5e00285e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"49437428-0d64-f593-b308-50dce170d3d2","fileSystemId":"aaf5f50c-0eaf-73a8-3122-9a98cdcc30e5","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A04%3A28.0099078Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"79b5c3bb-2076-db9a-2f63-f9db9f6edd4b","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_e656b45d","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"b96cff82-96e0-e011-0950-6c177f09a518","fileSystemId":"79b5c3bb-2076-db9a-2f63-f9db9f6edd4b","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['1436'] + content-length: ['1438'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:13:45 GMT'] + date: ['Tue, 26 Mar 2019 11:04:32 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -314,24 +420,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf2c21f-9b7b-4aa9-bade-1d3e89ff6ca3?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc5308e5-e893-43bc-a99d-fcf4fba0c265?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:13:47 GMT'] + date: ['Tue, 26 Mar 2019 11:04:34 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf2c21f-9b7b-4aa9-bade-1d3e89ff6ca3?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc5308e5-e893-43bc-a99d-fcf4fba0c265?api-version=2017-08-15&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-ms-ratelimit-remaining-subscription-deletes: ['14997'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -341,18 +449,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf2c21f-9b7b-4aa9-bade-1d3e89ff6ca3?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc5308e5-e893-43bc-a99d-fcf4fba0c265?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf2c21f-9b7b-4aa9-bade-1d3e89ff6ca3","name":"cdf2c21f-9b7b-4aa9-bade-1d3e89ff6ca3","status":"Deleting","startTime":"2019-02-05T14:13:47.2811009Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc5308e5-e893-43bc-a99d-fcf4fba0c265","name":"dc5308e5-e893-43bc-a99d-fcf4fba0c265","status":"Deleting","startTime":"2019-03-26T11:04:34.3126999Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:14:18 GMT'] + date: ['Tue, 26 Mar 2019 11:05:05 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] @@ -367,18 +477,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf2c21f-9b7b-4aa9-bade-1d3e89ff6ca3?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc5308e5-e893-43bc-a99d-fcf4fba0c265?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cdf2c21f-9b7b-4aa9-bade-1d3e89ff6ca3","name":"cdf2c21f-9b7b-4aa9-bade-1d3e89ff6ca3","status":"Succeeded","startTime":"2019-02-05T14:13:47.2811009Z","endTime":"2019-02-05T14:14:34.2327188Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dc5308e5-e893-43bc-a99d-fcf4fba0c265","name":"dc5308e5-e893-43bc-a99d-fcf4fba0c265","status":"Succeeded","startTime":"2019-03-26T11:04:34.3126999Z","endTime":"2019-03-26T11:05:34.2657649Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:14:50 GMT'] + date: ['Tue, 26 Mar 2019 11:05:36 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -393,19 +505,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2017-08-15 response: body: {string: !!python/unicode '{"value":[]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['12'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:14:50 GMT'] + date: ['Tue, 26 Mar 2019 11:05: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] @@ -420,7 +534,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 @@ -432,7 +546,7 @@ interactions: cache-control: [no-cache] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:14:56 GMT'] + date: ['Tue, 26 Mar 2019 11:05:45 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -447,20 +561,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd66bea7-bef1-4c85-a3f7-5b47b1a3629d?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a606089b-af47-451a-934e-91cd61e837f4?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:14:59 GMT'] + date: ['Tue, 26 Mar 2019 11:05:48 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd66bea7-bef1-4c85-a3f7-5b47b1a3629d?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a606089b-af47-451a-934e-91cd61e837f4?api-version=2017-08-15&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] @@ -474,18 +590,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd66bea7-bef1-4c85-a3f7-5b47b1a3629d?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a606089b-af47-451a-934e-91cd61e837f4?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fd66bea7-bef1-4c85-a3f7-5b47b1a3629d","name":"fd66bea7-bef1-4c85-a3f7-5b47b1a3629d","status":"Succeeded","startTime":"2019-02-05T14:14:59.148986Z","endTime":"2019-02-05T14:15:02.5729926Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a606089b-af47-451a-934e-91cd61e837f4","name":"a606089b-af47-451a-934e-91cd61e837f4","status":"Succeeded","startTime":"2019-03-26T11:05:48.2601237Z","endTime":"2019-03-26T11:05:51.4377658Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['543'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:15:29 GMT'] + date: ['Tue, 26 Mar 2019 11:06:18 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -500,7 +618,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -512,7 +630,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:15:35 GMT'] + date: ['Tue, 26 Mar 2019 11:06:24 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -527,24 +645,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/700f022f-5823-455a-b241-aa664a44eb81?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e519c5dc-7ad9-47cf-a23d-33cc898f5a95?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:15:37 GMT'] + date: ['Tue, 26 Mar 2019 11:06:25 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/700f022f-5823-455a-b241-aa664a44eb81?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e519c5dc-7ad9-47cf-a23d-33cc898f5a95?api-version=2017-08-15&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: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14997'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -554,18 +674,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/700f022f-5823-455a-b241-aa664a44eb81?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e519c5dc-7ad9-47cf-a23d-33cc898f5a95?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/700f022f-5823-455a-b241-aa664a44eb81","name":"700f022f-5823-455a-b241-aa664a44eb81","status":"Succeeded","startTime":"2019-02-05T14:15:37.9176149Z","endTime":"2019-02-05T14:15:38.0016193Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e519c5dc-7ad9-47cf-a23d-33cc898f5a95","name":"e519c5dc-7ad9-47cf-a23d-33cc898f5a95","status":"Succeeded","startTime":"2019-03-26T11:06:26.1863931Z","endTime":"2019-03-26T11:06:26.2652926Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:16:09 GMT'] + date: ['Tue, 26 Mar 2019 11:06: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] @@ -580,7 +702,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -592,7 +714,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:16:12 GMT'] + date: ['Tue, 26 Mar 2019 11:07:01 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml b/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml index 424a1013ff90..9fed49cfdefd 100644 --- a/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_volume.test_get_volume_by_name.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A16%3A16.4219244Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T11%3A07%3A08.6029577Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a25ec247-840d-4716-ba60-ad59f3e0e5ea?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a716471-7bb4-414d-b6f6-94e43600dcaf?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:16:16 GMT'] - etag: [W/"datetime'2019-02-05T14%3A16%3A16.4219244Z'"] + date: ['Tue, 26 Mar 2019 11:07:09 GMT'] + etag: [W/"datetime'2019-03-26T11%3A07%3A08.6029577Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a25ec247-840d-4716-ba60-ad59f3e0e5ea?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a716471-7bb4-414d-b6f6-94e43600dcaf?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a25ec247-840d-4716-ba60-ad59f3e0e5ea","name":"a25ec247-840d-4716-ba60-ad59f3e0e5ea","status":"Succeeded","startTime":"2019-02-05T14:16:16.3779447Z","endTime":"2019-02-05T14:16:16.6509273Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0a716471-7bb4-414d-b6f6-94e43600dcaf","name":"0a716471-7bb4-414d-b6f6-94e43600dcaf","status":"Succeeded","startTime":"2019-03-26T11:07:08.4881538Z","endTime":"2019-03-26T11:07:08.8787939Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:16:48 GMT'] + date: ['Tue, 26 Mar 2019 11:07:41 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A16%3A16.704124Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T11%3A07%3A08.9612153Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['346'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:16:49 GMT'] - etag: [W/"datetime'2019-02-05T14%3A16%3A16.704124Z'"] + date: ['Tue, 26 Mar 2019 11:07:43 GMT'] + etag: [W/"datetime'2019-03-26T11%3A07%3A08.9612153Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A16%3A52.6676542Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T11%3A07%3A48.600612Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafb21ee-d59e-472c-8824-720a819d04c5?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8db6be9-1da6-4d6e-80c1-1b03e8464180?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['460'] + content-length: ['459'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:16:52 GMT'] - etag: [W/"datetime'2019-02-05T14%3A16%3A52.6676542Z'"] + date: ['Tue, 26 Mar 2019 11:07:49 GMT'] + etag: [W/"datetime'2019-03-26T11%3A07%3A48.600612Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1194'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafb21ee-d59e-472c-8824-720a819d04c5?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8db6be9-1da6-4d6e-80c1-1b03e8464180?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/bafb21ee-d59e-472c-8824-720a819d04c5","name":"bafb21ee-d59e-472c-8824-720a819d04c5","status":"Succeeded","startTime":"2019-02-05T14:16:52.6210316Z","endTime":"2019-02-05T14:16:53.1022446Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/d8db6be9-1da6-4d6e-80c1-1b03e8464180","name":"d8db6be9-1da6-4d6e-80c1-1b03e8464180","status":"Succeeded","startTime":"2019-03-26T11:07:48.4698937Z","endTime":"2019-03-26T11:07:48.9674714Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:17:24 GMT'] + date: ['Tue, 26 Mar 2019 11:08:20 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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A16%3A53.16901Z''\"","location":"westus2","properties":{"poolId":"ed8e3eba-4f04-82a5-9036-d4e84dfd9a16","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T11%3A07%3A49.0829587Z''\"","location":"westus2","properties":{"poolId":"3c6b21bf-726e-0f5a-94e2-f1293d7ee733","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: ['555'] + content-length: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:17:25 GMT'] - etag: [W/"datetime'2019-02-05T14%3A16%3A53.16901Z'"] + date: ['Tue, 26 Mar 2019 11:08:21 GMT'] + etag: [W/"datetime'2019-03-26T11%3A07%3A49.0829587Z'"] 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] @@ -179,25 +191,27 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A17%3A40.4435719Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A08%3A36.4188702Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9c14bb1-c8db-4170-99a1-84c158ae383c?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:17:40 GMT'] - etag: [W/"datetime'2019-02-05T14%3A17%3A40.4435719Z'"] + date: ['Tue, 26 Mar 2019 11:08:36 GMT'] + etag: [W/"datetime'2019-03-26T11%3A08%3A36.4188702Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -207,18 +221,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9c14bb1-c8db-4170-99a1-84c158ae383c?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f9c14bb1-c8db-4170-99a1-84c158ae383c","name":"f9c14bb1-c8db-4170-99a1-84c158ae383c","status":"Succeeded","startTime":"2019-02-05T14:17:40.3890807Z","endTime":"2019-02-05T14:18:11.9112954Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714","name":"ef38e068-e17e-4195-9459-17f9acf41714","status":"Creating","startTime":"2019-03-26T11:08:36.2883774Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:18:11 GMT'] + date: ['Tue, 26 Mar 2019 11:09:06 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] @@ -233,19 +249,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A18%3A11.9709598Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"73d3e731-4f11-0614-7530-a972367af6e8","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_a52d80b3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2fa7074a-63b6-f8bd-d2ea-4a2e35d4d058","fileSystemId":"73d3e731-4f11-0614-7530-a972367af6e8","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714","name":"ef38e068-e17e-4195-9459-17f9acf41714","status":"Creating","startTime":"2019-03-26T11:08:36.2883774Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1424'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:18:12 GMT'] - etag: [W/"datetime'2019-02-05T14%3A18%3A11.9709598Z'"] + date: ['Tue, 26 Mar 2019 11:09:39 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -260,20 +277,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A18%3A11.9709598Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"73d3e731-4f11-0614-7530-a972367af6e8","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_a52d80b3","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"2fa7074a-63b6-f8bd-d2ea-4a2e35d4d058","fileSystemId":"73d3e731-4f11-0614-7530-a972367af6e8","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714","name":"ef38e068-e17e-4195-9459-17f9acf41714","status":"Creating","startTime":"2019-03-26T11:08:36.2883774Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1424'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:18:12 GMT'] - etag: [W/"datetime'2019-02-05T14%3A18%3A11.9709598Z'"] + date: ['Tue, 26 Mar 2019 11:10:11 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -287,28 +304,85 @@ interactions: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] - method: DELETE + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714","name":"ef38e068-e17e-4195-9459-17f9acf41714","status":"Creating","startTime":"2019-03-26T11:08:36.2883774Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:10: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/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ef38e068-e17e-4195-9459-17f9acf41714","name":"ef38e068-e17e-4195-9459-17f9acf41714","status":"Succeeded","startTime":"2019-03-26T11:08:36.2883774Z","endTime":"2019-03-26T11:11:10.6976172Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:11:14 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode ''} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A11%3A10.7404292Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"8622fc41-169f-094e-ad33-c5e7cb46a436","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_16440088","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4debd2f4-90fc-f44d-faae-43ba553f7256","fileSystemId":"8622fc41-169f-094e-ad33-c5e7cb46a436","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65950249-b79a-4a44-8327-2387d8293dd7?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:18:14 GMT'] + content-length: ['1426'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:11:16 GMT'] + etag: [W/"datetime'2019-03-26T11%3A11%3A10.7404292Z'"] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65950249-b79a-4a44-8327-2387d8293dd7?api-version=2017-08-15&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] + transfer-encoding: [chunked] + vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] - status: {code: 202, message: Accepted} + status: {code: 200, message: OK} - request: body: null headers: @@ -316,18 +390,22 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + accept-language: [en-US] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65950249-b79a-4a44-8327-2387d8293dd7?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65950249-b79a-4a44-8327-2387d8293dd7","name":"65950249-b79a-4a44-8327-2387d8293dd7","status":"Deleting","startTime":"2019-02-05T14:18:15.3104103Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A11%3A10.7404292Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"8622fc41-169f-094e-ad33-c5e7cb46a436","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_16440088","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"4debd2f4-90fc-f44d-faae-43ba553f7256","fileSystemId":"8622fc41-169f-094e-ad33-c5e7cb46a436","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['560'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:18:46 GMT'] + date: ['Tue, 26 Mar 2019 11:11:17 GMT'] + etag: [W/"datetime'2019-03-26T11%3A11%3A10.7404292Z'"] 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] @@ -335,6 +413,36 @@ interactions: x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['0'] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + response: + body: {string: !!python/unicode ''} + headers: + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9234ab7d-b775-4bc3-bd12-74453dafb701?api-version=2017-08-15'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 26 Mar 2019 11:11:18 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9234ab7d-b775-4bc3-bd12-74453dafb701?api-version=2017-08-15&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: ['14996'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} - request: body: null headers: @@ -342,18 +450,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65950249-b79a-4a44-8327-2387d8293dd7?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9234ab7d-b775-4bc3-bd12-74453dafb701?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65950249-b79a-4a44-8327-2387d8293dd7","name":"65950249-b79a-4a44-8327-2387d8293dd7","status":"Deleting","startTime":"2019-02-05T14:18:15.3104103Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9234ab7d-b775-4bc3-bd12-74453dafb701","name":"9234ab7d-b775-4bc3-bd12-74453dafb701","status":"Deleting","startTime":"2019-03-26T11:11:19.2071349Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:19:17 GMT'] + date: ['Tue, 26 Mar 2019 11:11:49 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] @@ -368,18 +478,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65950249-b79a-4a44-8327-2387d8293dd7?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9234ab7d-b775-4bc3-bd12-74453dafb701?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/65950249-b79a-4a44-8327-2387d8293dd7","name":"65950249-b79a-4a44-8327-2387d8293dd7","status":"Succeeded","startTime":"2019-02-05T14:18:15.3104103Z","endTime":"2019-02-05T14:19:20.487267Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/9234ab7d-b775-4bc3-bd12-74453dafb701","name":"9234ab7d-b775-4bc3-bd12-74453dafb701","status":"Succeeded","startTime":"2019-03-26T11:11:19.2071349Z","endTime":"2019-03-26T11:12:13.6874934Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:19:49 GMT'] + date: ['Tue, 26 Mar 2019 11:12:21 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -394,24 +506,27 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 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-py-tests-rg'' was not found."}}'} + resource with identifier ''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1'' + is not found."}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['230'] + content-length: ['299'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:19:55 GMT'] + date: ['Tue, 26 Mar 2019 11:12:29 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] + server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-failure-cause: [gateway] + x-powered-by: [ASP.NET] status: {code: 404, message: Not Found} - request: body: null @@ -421,24 +536,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6e3e78e-884c-44b0-bcb0-76639616f678?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47415103-edab-4e85-ae0e-195d01ed7c69?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:19:58 GMT'] + date: ['Tue, 26 Mar 2019 11:12:31 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6e3e78e-884c-44b0-bcb0-76639616f678?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47415103-edab-4e85-ae0e-195d01ed7c69?api-version=2017-08-15&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: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14996'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -448,18 +565,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6e3e78e-884c-44b0-bcb0-76639616f678?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47415103-edab-4e85-ae0e-195d01ed7c69?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e6e3e78e-884c-44b0-bcb0-76639616f678","name":"e6e3e78e-884c-44b0-bcb0-76639616f678","status":"Succeeded","startTime":"2019-02-05T14:19:58.2456283Z","endTime":"2019-02-05T14:20:01.5270574Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/47415103-edab-4e85-ae0e-195d01ed7c69","name":"47415103-edab-4e85-ae0e-195d01ed7c69","status":"Succeeded","startTime":"2019-03-26T11:12:32.3288981Z","endTime":"2019-03-26T11:12:35.5093522Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:20:29 GMT'] + date: ['Tue, 26 Mar 2019 11:13:04 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] @@ -474,7 +593,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -486,7 +605,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:20:34 GMT'] + date: ['Tue, 26 Mar 2019 11:13:10 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -501,20 +620,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5402b22a-99cf-463f-8eac-677fcf99b919?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36a8b959-2913-4030-8b59-9735f9f01c3a?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:20:37 GMT'] + date: ['Tue, 26 Mar 2019 11:13:13 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5402b22a-99cf-463f-8eac-677fcf99b919?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36a8b959-2913-4030-8b59-9735f9f01c3a?api-version=2017-08-15&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] @@ -528,18 +649,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5402b22a-99cf-463f-8eac-677fcf99b919?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36a8b959-2913-4030-8b59-9735f9f01c3a?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5402b22a-99cf-463f-8eac-677fcf99b919","name":"5402b22a-99cf-463f-8eac-677fcf99b919","status":"Succeeded","startTime":"2019-02-05T14:20:37.2140715Z","endTime":"2019-02-05T14:20:37.2760936Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/36a8b959-2913-4030-8b59-9735f9f01c3a","name":"36a8b959-2913-4030-8b59-9735f9f01c3a","status":"Succeeded","startTime":"2019-03-26T11:13:13.8198901Z","endTime":"2019-03-26T11:13:13.9917367Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:21:07 GMT'] + date: ['Tue, 26 Mar 2019 11:13:44 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -554,7 +677,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -566,7 +689,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:21:11 GMT'] + date: ['Tue, 26 Mar 2019 11:13:48 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml b/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml index c90b4503e003..1abb737964f8 100644 --- a/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_volume.test_list_volumes.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A21%3A16.0926745Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T11%3A51%3A53.9211887Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbd8b430-395b-40b9-965c-bad54a9394b7?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6859fa91-34e8-4825-9eb9-43d81df8a14d?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:21:16 GMT'] - etag: [W/"datetime'2019-02-05T14%3A21%3A16.0926745Z'"] + date: ['Tue, 26 Mar 2019 11:51:54 GMT'] + etag: [W/"datetime'2019-03-26T11%3A51%3A53.9211887Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbd8b430-395b-40b9-965c-bad54a9394b7?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6859fa91-34e8-4825-9eb9-43d81df8a14d?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dbd8b430-395b-40b9-965c-bad54a9394b7","name":"dbd8b430-395b-40b9-965c-bad54a9394b7","status":"Succeeded","startTime":"2019-02-05T14:21:16.0410397Z","endTime":"2019-02-05T14:21:16.3195528Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6859fa91-34e8-4825-9eb9-43d81df8a14d","name":"6859fa91-34e8-4825-9eb9-43d81df8a14d","status":"Succeeded","startTime":"2019-03-26T11:51:53.8438581Z","endTime":"2019-03-26T11:51:54.1779162Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:21:47 GMT'] + date: ['Tue, 26 Mar 2019 11:52: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] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A21%3A16.3668698Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T11%3A51%3A54.2214026Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:21:49 GMT'] - etag: [W/"datetime'2019-02-05T14%3A21%3A16.3668698Z'"] + date: ['Tue, 26 Mar 2019 11:52:29 GMT'] + etag: [W/"datetime'2019-03-26T11%3A51%3A54.2214026Z'"] 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] @@ -92,22 +98,24 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A21%3A52.8497728Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T11%3A52%3A34.5501325Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce3c6722-fb2a-4944-9e01-7e7a77e1dce3?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dccff4b6-7cbb-4e23-8e8c-e699357bccb0?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:21:52 GMT'] - etag: [W/"datetime'2019-02-05T14%3A21%3A52.8497728Z'"] + date: ['Tue, 26 Mar 2019 11:52:35 GMT'] + etag: [W/"datetime'2019-03-26T11%3A52%3A34.5501325Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce3c6722-fb2a-4944-9e01-7e7a77e1dce3?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dccff4b6-7cbb-4e23-8e8c-e699357bccb0?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ce3c6722-fb2a-4944-9e01-7e7a77e1dce3","name":"ce3c6722-fb2a-4944-9e01-7e7a77e1dce3","status":"Succeeded","startTime":"2019-02-05T14:21:52.8083924Z","endTime":"2019-02-05T14:21:53.4046703Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/dccff4b6-7cbb-4e23-8e8c-e699357bccb0","name":"dccff4b6-7cbb-4e23-8e8c-e699357bccb0","status":"Succeeded","startTime":"2019-03-26T11:52:34.4813573Z","endTime":"2019-03-26T11:52:35.0282141Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:22:24 GMT'] + date: ['Tue, 26 Mar 2019 11:53:08 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A21%3A53.467212Z''\"","location":"westus2","properties":{"poolId":"1019eed9-197d-777c-09bf-2bc01c6ad56a","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T11%3A52%3A35.0785089Z''\"","location":"westus2","properties":{"poolId":"dee06bdb-0af1-e6cf-4644-2204f3144b79","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: ['556'] + content-length: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:22:26 GMT'] - etag: [W/"datetime'2019-02-05T14%3A21%3A53.467212Z'"] + date: ['Tue, 26 Mar 2019 11:53:11 GMT'] + etag: [W/"datetime'2019-03-26T11%3A52%3A35.0785089Z'"] 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] @@ -179,25 +191,27 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A22%3A40.6677203Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A53%3A25.7145817Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/824e1bd7-3396-44f0-a84a-eee638dde28e?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:22:41 GMT'] - etag: [W/"datetime'2019-02-05T14%3A22%3A40.6677203Z'"] + date: ['Tue, 26 Mar 2019 11:53:26 GMT'] + etag: [W/"datetime'2019-03-26T11%3A53%3A25.7145817Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -207,18 +221,132 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/824e1bd7-3396-44f0-a84a-eee638dde28e?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/824e1bd7-3396-44f0-a84a-eee638dde28e","name":"824e1bd7-3396-44f0-a84a-eee638dde28e","status":"Succeeded","startTime":"2019-02-05T14:22:40.6265268Z","endTime":"2019-02-05T14:23:11.9236205Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd","name":"941ede22-8954-4b80-8efd-0b6f0bc9c8fd","status":"Creating","startTime":"2019-03-26T11:53:25.6701056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:53: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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd","name":"941ede22-8954-4b80-8efd-0b6f0bc9c8fd","status":"Creating","startTime":"2019-03-26T11:53:25.6701056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:54:31 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] + server: [Microsoft-IIS/10.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd","name":"941ede22-8954-4b80-8efd-0b6f0bc9c8fd","status":"Creating","startTime":"2019-03-26T11:53:25.6701056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:55:04 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd","name":"941ede22-8954-4b80-8efd-0b6f0bc9c8fd","status":"Creating","startTime":"2019-03-26T11:53:25.6701056Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:55:35 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/941ede22-8954-4b80-8efd-0b6f0bc9c8fd","name":"941ede22-8954-4b80-8efd-0b6f0bc9c8fd","status":"Succeeded","startTime":"2019-03-26T11:53:25.6701056Z","endTime":"2019-03-26T11:56:05.518886Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:23:11 GMT'] + date: ['Tue, 26 Mar 2019 11:56:07 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] @@ -233,19 +361,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A23%3A11.9549321Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"327cb2b4-a603-b267-6425-3c8b222655f3","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1b4c9d9e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"dfed2657-7224-efa7-817e-c31af52d41fe","fileSystemId":"327cb2b4-a603-b267-6425-3c8b222655f3","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A56%3A05.5508469Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"01c4e78a-e2c2-3ec3-3493-238d44223028","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_8860b3c7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"706dfcb2-9678-bfbc-6185-43da4b752e62","fileSystemId":"01c4e78a-e2c2-3ec3-3493-238d44223028","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['1424'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:23:13 GMT'] - etag: [W/"datetime'2019-02-05T14%3A23%3A11.9549321Z'"] + date: ['Tue, 26 Mar 2019 11:56:08 GMT'] + etag: [W/"datetime'2019-03-26T11%3A56%3A05.5508469Z'"] 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] @@ -265,21 +395,23 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A23%3A17.494865Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A56%3A13.6176261Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b048d05-ed5e-4377-8885-2db966ba68b6?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['736'] + content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:23:18 GMT'] - etag: [W/"datetime'2019-02-05T14%3A23%3A17.494865Z'"] + date: ['Tue, 26 Mar 2019 11:56:14 GMT'] + etag: [W/"datetime'2019-03-26T11%3A56%3A13.6176261Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -293,18 +425,132 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b048d05-ed5e-4377-8885-2db966ba68b6?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/1b048d05-ed5e-4377-8885-2db966ba68b6","name":"1b048d05-ed5e-4377-8885-2db966ba68b6","status":"Succeeded","startTime":"2019-02-05T14:23:17.4475548Z","endTime":"2019-02-05T14:23:30.2239674Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-2"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae","name":"316a7f74-8b2d-4266-896b-9aedc5ee8bae","status":"Creating","startTime":"2019-03-26T11:56:13.5691541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:56:45 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae","name":"316a7f74-8b2d-4266-896b-9aedc5ee8bae","status":"Creating","startTime":"2019-03-26T11:56:13.5691541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:57:17 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae","name":"316a7f74-8b2d-4266-896b-9aedc5ee8bae","status":"Creating","startTime":"2019-03-26T11:56:13.5691541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:57:48 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae","name":"316a7f74-8b2d-4266-896b-9aedc5ee8bae","status":"Creating","startTime":"2019-03-26T11:56:13.5691541Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:58:21 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] + server: [Microsoft-IIS/10.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/316a7f74-8b2d-4266-896b-9aedc5ee8bae","name":"316a7f74-8b2d-4266-896b-9aedc5ee8bae","status":"Succeeded","startTime":"2019-03-26T11:56:13.5691541Z","endTime":"2019-03-26T11:58:48.5945689Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:23:48 GMT'] + date: ['Tue, 26 Mar 2019 11:58:53 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] @@ -319,19 +565,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A23%3A30.2589284Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"fceb47c5-83d3-87c7-7921-bed75f85fbe1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1b4c9d9e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"34aa30f0-5f94-a801-08d9-4994e3dbdf5f","fileSystemId":"fceb47c5-83d3-87c7-7921-bed75f85fbe1","startIp":"10.4.0.128","endIp":"10.4.0.191","gateway":"10.4.0.129","netmask":"255.255.255.192","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A58%3A48.625661Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"e3061e2a-5f1f-a300-5904-69e5d559e0e0","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_88e77054","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"df35aa5e-0746-8456-6ebb-801b03160028","fileSystemId":"e3061e2a-5f1f-a300-5904-69e5d559e0e0","startIp":"10.0.1.6","endIp":"10.0.1.6","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.6"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['1432'] + content-length: ['1425'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:23:50 GMT'] - etag: [W/"datetime'2019-02-05T14%3A23%3A30.2589284Z'"] + date: ['Tue, 26 Mar 2019 11:58:55 GMT'] + etag: [W/"datetime'2019-03-26T11%3A58%3A48.625661Z'"] 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] @@ -346,19 +594,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A23%3A11.9549321Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"327cb2b4-a603-b267-6425-3c8b222655f3","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1b4c9d9e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"dfed2657-7224-efa7-817e-c31af52d41fe","fileSystemId":"327cb2b4-a603-b267-6425-3c8b222655f3","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A23%3A30.2589284Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"fceb47c5-83d3-87c7-7921-bed75f85fbe1","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1b4c9d9e","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"34aa30f0-5f94-a801-08d9-4994e3dbdf5f","fileSystemId":"fceb47c5-83d3-87c7-7921-bed75f85fbe1","startIp":"10.4.0.128","endIp":"10.4.0.191","gateway":"10.4.0.129","netmask":"255.255.255.192","ipAddress":"10.0.2.4"}]}}]}'} + body: {string: !!python/unicode '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A56%3A05.5508469Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"01c4e78a-e2c2-3ec3-3493-238d44223028","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_8860b3c7","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"706dfcb2-9678-bfbc-6185-43da4b752e62","fileSystemId":"01c4e78a-e2c2-3ec3-3493-238d44223028","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-2","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A58%3A48.625661Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"e3061e2a-5f1f-a300-5904-69e5d559e0e0","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-2","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_88e77054","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"df35aa5e-0746-8456-6ebb-801b03160028","fileSystemId":"e3061e2a-5f1f-a300-5904-69e5d559e0e0","startIp":"10.0.1.6","endIp":"10.0.1.6","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.6"}]}}]}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['2869'] + content-length: ['2864'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:23:51 GMT'] + date: ['Tue, 26 Mar 2019 11:58:57 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -374,24 +624,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa595bd5-19b0-4534-bc0e-f6621c33e821?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2bb9c6d-7986-49b0-aaa6-a2cad7ada5bc?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:23:54 GMT'] + date: ['Tue, 26 Mar 2019 11:59:01 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa595bd5-19b0-4534-bc0e-f6621c33e821?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2bb9c6d-7986-49b0-aaa6-a2cad7ada5bc?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -401,18 +653,48 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa595bd5-19b0-4534-bc0e-f6621c33e821?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2bb9c6d-7986-49b0-aaa6-a2cad7ada5bc?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/fa595bd5-19b0-4534-bc0e-f6621c33e821","name":"fa595bd5-19b0-4534-bc0e-f6621c33e821","status":"Succeeded","startTime":"2019-02-05T14:23:54.2878083Z","endTime":"2019-02-05T14:23:58.0661039Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2bb9c6d-7986-49b0-aaa6-a2cad7ada5bc","name":"f2bb9c6d-7986-49b0-aaa6-a2cad7ada5bc","status":"Deleting","startTime":"2019-03-26T11:59:01.4289339Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:59:32 GMT'] + expires: ['-1'] + pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] + server: [Microsoft-IIS/10.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-powered-by: [ASP.NET] + status: {code: 200, message: OK} +- request: + body: null + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2bb9c6d-7986-49b0-aaa6-a2cad7ada5bc?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f2bb9c6d-7986-49b0-aaa6-a2cad7ada5bc","name":"f2bb9c6d-7986-49b0-aaa6-a2cad7ada5bc","status":"Succeeded","startTime":"2019-03-26T11:59:01.4289339Z","endTime":"2019-03-26T11:59:58.7854865Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:24:24 GMT'] + date: ['Tue, 26 Mar 2019 12:00:05 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] @@ -428,20 +710,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-2?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48f9f69b-3135-4799-a9e3-48f161e1a3a4?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cb553167-222b-4017-b240-d3fa255d5756?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:24:27 GMT'] + date: ['Tue, 26 Mar 2019 12:00:09 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48f9f69b-3135-4799-a9e3-48f161e1a3a4?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cb553167-222b-4017-b240-d3fa255d5756?api-version=2017-08-15&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] @@ -455,18 +739,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48f9f69b-3135-4799-a9e3-48f161e1a3a4?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cb553167-222b-4017-b240-d3fa255d5756?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48f9f69b-3135-4799-a9e3-48f161e1a3a4","name":"48f9f69b-3135-4799-a9e3-48f161e1a3a4","status":"Deleting","startTime":"2019-02-05T14:24:27.9400718Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-2"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cb553167-222b-4017-b240-d3fa255d5756","name":"cb553167-222b-4017-b240-d3fa255d5756","status":"Deleting","startTime":"2019-03-26T12:00:09.5411895Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:24:58 GMT'] + date: ['Tue, 26 Mar 2019 12:00:41 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -481,18 +767,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48f9f69b-3135-4799-a9e3-48f161e1a3a4?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cb553167-222b-4017-b240-d3fa255d5756?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/48f9f69b-3135-4799-a9e3-48f161e1a3a4","name":"48f9f69b-3135-4799-a9e3-48f161e1a3a4","status":"Succeeded","startTime":"2019-02-05T14:24:27.9400718Z","endTime":"2019-02-05T14:25:27.5818423Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-2"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/cb553167-222b-4017-b240-d3fa255d5756","name":"cb553167-222b-4017-b240-d3fa255d5756","status":"Succeeded","startTime":"2019-03-26T12:00:09.5411895Z","endTime":"2019-03-26T12:01:12.5752053Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:25:29 GMT'] + date: ['Tue, 26 Mar 2019 12:01: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] @@ -507,7 +795,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 @@ -519,7 +807,7 @@ interactions: cache-control: [no-cache] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:25:34 GMT'] + date: ['Tue, 26 Mar 2019 12:01:19 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -533,7 +821,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 @@ -545,7 +833,7 @@ interactions: cache-control: [no-cache] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:25:40 GMT'] + date: ['Tue, 26 Mar 2019 12:01:24 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -560,20 +848,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3267e78-b82f-4b63-9d37-f72c334a01b4?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6507ba59-d33d-428f-9d6e-0072feb6a118?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:25:42 GMT'] + date: ['Tue, 26 Mar 2019 12:01:27 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3267e78-b82f-4b63-9d37-f72c334a01b4?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6507ba59-d33d-428f-9d6e-0072feb6a118?api-version=2017-08-15&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] @@ -587,18 +877,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3267e78-b82f-4b63-9d37-f72c334a01b4?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6507ba59-d33d-428f-9d6e-0072feb6a118?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b3267e78-b82f-4b63-9d37-f72c334a01b4","name":"b3267e78-b82f-4b63-9d37-f72c334a01b4","status":"Succeeded","startTime":"2019-02-05T14:25:43.225855Z","endTime":"2019-02-05T14:25:46.616449Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/6507ba59-d33d-428f-9d6e-0072feb6a118","name":"6507ba59-d33d-428f-9d6e-0072feb6a118","status":"Succeeded","startTime":"2019-03-26T12:01:27.4993291Z","endTime":"2019-03-26T12:01:30.8287185Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['542'] + content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:26:14 GMT'] + date: ['Tue, 26 Mar 2019 12:01:57 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -613,7 +905,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -625,7 +917,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:26:20 GMT'] + date: ['Tue, 26 Mar 2019 12:02:03 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -640,24 +932,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e0403d7-de50-4afb-a4c9-7b456e0875fd?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a413147b-a004-415b-8f90-1ca1cfd1a3f5?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:26:21 GMT'] + date: ['Tue, 26 Mar 2019 12:02:05 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e0403d7-de50-4afb-a4c9-7b456e0875fd?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a413147b-a004-415b-8f90-1ca1cfd1a3f5?api-version=2017-08-15&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: ['14998'] + x-ms-ratelimit-remaining-subscription-deletes: ['14999'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -667,18 +961,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e0403d7-de50-4afb-a4c9-7b456e0875fd?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a413147b-a004-415b-8f90-1ca1cfd1a3f5?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8e0403d7-de50-4afb-a4c9-7b456e0875fd","name":"8e0403d7-de50-4afb-a4c9-7b456e0875fd","status":"Succeeded","startTime":"2019-02-05T14:26:22.2633675Z","endTime":"2019-02-05T14:26:22.3303604Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a413147b-a004-415b-8f90-1ca1cfd1a3f5","name":"a413147b-a004-415b-8f90-1ca1cfd1a3f5","status":"Succeeded","startTime":"2019-03-26T12:02:05.6583935Z","endTime":"2019-03-26T12:02:05.7521513Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:26:53 GMT'] + date: ['Tue, 26 Mar 2019 12:02:36 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -693,7 +989,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -705,7 +1001,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:26:56 GMT'] + date: ['Tue, 26 Mar 2019 12:02:40 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml b/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml index 1fe90c3305d2..0ab0d77922cc 100644 --- a/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_volume.test_patch_volume.yaml @@ -8,25 +8,27 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A27%3A01.936208Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A52%3A36.0641308Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ada4d1d5-1a47-4f7e-ad08-73797d4a3317?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2c690877-d7bc-49cb-9444-d44c605832b6?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['345'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:27:02 GMT'] - etag: [W/"datetime'2019-02-05T14%3A27%3A01.936208Z'"] + date: ['Tue, 26 Mar 2019 10:52:36 GMT'] + etag: [W/"datetime'2019-03-26T10%3A52%3A36.0641308Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1199'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ada4d1d5-1a47-4f7e-ad08-73797d4a3317?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2c690877-d7bc-49cb-9444-d44c605832b6?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ada4d1d5-1a47-4f7e-ad08-73797d4a3317","name":"ada4d1d5-1a47-4f7e-ad08-73797d4a3317","status":"Succeeded","startTime":"2019-02-05T14:27:01.8960054Z","endTime":"2019-02-05T14:27:02.2425719Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2c690877-d7bc-49cb-9444-d44c605832b6","name":"2c690877-d7bc-49cb-9444-d44c605832b6","status":"Succeeded","startTime":"2019-03-26T10:52:35.9943887Z","endTime":"2019-03-26T10:52:36.3090842Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:27:33 GMT'] + date: ['Tue, 26 Mar 2019 10:53:08 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A27%3A02.2944626Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T10%3A52%3A36.3553405Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:27:35 GMT'] - etag: [W/"datetime'2019-02-05T14%3A27%3A02.2944626Z'"] + date: ['Tue, 26 Mar 2019 10:53:09 GMT'] + etag: [W/"datetime'2019-03-26T10%3A52%3A36.3553405Z'"] 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] @@ -92,26 +98,28 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A27%3A37.6524295Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A53%3A14.6367675Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a99768b7-a9fe-4e7b-b9ac-114f96479ac0?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5a577d3f-37f2-4458-92b2-bbeb86acf31a?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:27:38 GMT'] - etag: [W/"datetime'2019-02-05T14%3A27%3A37.6524295Z'"] + date: ['Tue, 26 Mar 2019 10:53:14 GMT'] + etag: [W/"datetime'2019-03-26T10%3A53%3A14.6367675Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1197'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a99768b7-a9fe-4e7b-b9ac-114f96479ac0?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5a577d3f-37f2-4458-92b2-bbeb86acf31a?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/a99768b7-a9fe-4e7b-b9ac-114f96479ac0","name":"a99768b7-a9fe-4e7b-b9ac-114f96479ac0","status":"Succeeded","startTime":"2019-02-05T14:27:37.6009143Z","endTime":"2019-02-05T14:27:38.0945871Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5a577d3f-37f2-4458-92b2-bbeb86acf31a","name":"5a577d3f-37f2-4458-92b2-bbeb86acf31a","status":"Succeeded","startTime":"2019-03-26T10:53:14.5714685Z","endTime":"2019-03-26T10:53:14.9803913Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:28:09 GMT'] + date: ['Tue, 26 Mar 2019 10:53:47 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] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A27%3A38.1457772Z''\"","location":"westus2","properties":{"poolId":"2ae44f52-c825-8298-e484-1b2df380969c","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T10%3A53%3A15.0490608Z''\"","location":"westus2","properties":{"poolId":"088fa049-f2d9-2777-e7fc-5dfdd052c1b6","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:28:10 GMT'] - etag: [W/"datetime'2019-02-05T14%3A27%3A38.1457772Z'"] + date: ['Tue, 26 Mar 2019 10:53:48 GMT'] + etag: [W/"datetime'2019-03-26T10%3A53%3A15.0490608Z'"] 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] @@ -179,25 +191,27 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A28%3A24.8977233Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T10%3A54%3A04.6766208Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ce316dc-20bd-4315-a4be-c15ecad82d21?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:28:25 GMT'] - etag: [W/"datetime'2019-02-05T14%3A28%3A24.8977233Z'"] + date: ['Tue, 26 Mar 2019 10:54:05 GMT'] + etag: [W/"datetime'2019-03-26T10%3A54%3A04.6766208Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1199'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -207,18 +221,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ce316dc-20bd-4315-a4be-c15ecad82d21?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ce316dc-20bd-4315-a4be-c15ecad82d21","name":"5ce316dc-20bd-4315-a4be-c15ecad82d21","status":"Creating","startTime":"2019-02-05T14:28:24.8518536Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","name":"b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","status":"Creating","startTime":"2019-03-26T10:54:04.6144837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:28:56 GMT'] + date: ['Tue, 26 Mar 2019 10:54:36 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -233,18 +249,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ce316dc-20bd-4315-a4be-c15ecad82d21?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5ce316dc-20bd-4315-a4be-c15ecad82d21","name":"5ce316dc-20bd-4315-a4be-c15ecad82d21","status":"Succeeded","startTime":"2019-02-05T14:28:24.8518536Z","endTime":"2019-02-05T14:29:15.5614734Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","name":"b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","status":"Creating","startTime":"2019-03-26T10:54:04.6144837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:29:27 GMT'] + date: ['Tue, 26 Mar 2019 10:55:09 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -259,19 +277,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A29%3A15.5954505Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"94bb464b-4102-41a5-aa19-e04daa9b4839","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_9233def4","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7d23533f-db64-f9fe-baaf-fe59a1bee12d","fileSystemId":"94bb464b-4102-41a5-aa19-e04daa9b4839","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","name":"b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","status":"Creating","startTime":"2019-03-26T10:54:04.6144837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1424'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:29:29 GMT'] - etag: [W/"datetime'2019-02-05T14%3A29%3A15.5954505Z'"] + date: ['Tue, 26 Mar 2019 10:55: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] @@ -280,35 +299,31 @@ interactions: x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: - body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "serviceLevel": - "Standard"}}' + body: null headers: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['76'] - Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] - accept-language: [en-US] - method: PATCH - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A29%3A35.2432963Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"94bb464b-4102-41a5-aa19-e04daa9b4839","serviceLevel":"Standard","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_9233def4","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7d23533f-db64-f9fe-baaf-fe59a1bee12d","fileSystemId":"94bb464b-4102-41a5-aa19-e04daa9b4839","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","name":"b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","status":"Creating","startTime":"2019-03-26T10:54:04.6144837Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['1425'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:29:34 GMT'] - etag: [W/"datetime'2019-02-05T14%3A29%3A35.2432963Z'"] + date: ['Tue, 26 Mar 2019 10:56: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-ms-ratelimit-remaining-subscription-writes: ['1196'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -317,28 +332,28 @@ interactions: Accept: [application/json] Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] - Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205?api-version=2017-08-15 response: - body: {string: !!python/unicode ''} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","name":"b733b0c1-2ba7-4e98-82e8-f47e5d5cd205","status":"Succeeded","startTime":"2019-03-26T10:54:04.6144837Z","endTime":"2019-03-26T10:56:42.4884391Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:29:36 GMT'] + content-length: ['571'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 10:56:45 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8?api-version=2017-08-15&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] + 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} + status: {code: 200, message: OK} - request: body: null headers: @@ -346,18 +361,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8","name":"b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8","status":"Deleting","startTime":"2019-02-05T14:29:36.6459686Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T10%3A56%3A42.5222486Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"4a81d5d1-1fe5-53d9-7df5-9cf441ef47eb","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1b01af3f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f626682-a173-1c91-43d3-b444b2d99eb8","fileSystemId":"4a81d5d1-1fe5-53d9-7df5-9cf441ef47eb","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['560'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:30:08 GMT'] + date: ['Tue, 26 Mar 2019 10:56:47 GMT'] + etag: [W/"datetime'2019-03-26T10%3A56%3A42.5222486Z'"] 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] @@ -365,6 +383,70 @@ interactions: x-content-type-options: [nosniff] x-powered-by: [ASP.NET] status: {code: 200, message: OK} +- request: + body: !!python/unicode '{"properties": {"usageThreshold": 107374182400, "serviceLevel": + "Standard"}}' + headers: + Accept: [application/json] + Accept-Encoding: ['gzip, deflate'] + Connection: [keep-alive] + Content-Length: ['76'] + Content-Type: [application/json; charset=utf-8] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + accept-language: [en-US] + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T10%3A56%3A52.8896351Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"4a81d5d1-1fe5-53d9-7df5-9cf441ef47eb","serviceLevel":"Standard","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_1b01af3f","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"0f626682-a173-1c91-43d3-b444b2d99eb8","fileSystemId":"4a81d5d1-1fe5-53d9-7df5-9cf441ef47eb","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['1427'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 10:56:52 GMT'] + etag: [W/"datetime'2019-03-26T10%3A56%3A52.8896351Z'"] + expires: ['-1'] + pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] + server: [Microsoft-IIS/10.0] + strict-transport-security: [max-age=31536000; includeSubDomains] + transfer-encoding: [chunked] + vary: [Accept-Encoding] + x-content-type-options: [nosniff] + x-ms-ratelimit-remaining-subscription-writes: ['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] + Content-Length: ['0'] + User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 + response: + body: {string: !!python/unicode ''} + headers: + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e273ebb0-4b1c-4567-8d27-8b9e4b40ac96?api-version=2017-08-15'] + cache-control: [no-cache] + content-length: ['0'] + date: ['Tue, 26 Mar 2019 10:56:53 GMT'] + expires: ['-1'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e273ebb0-4b1c-4567-8d27-8b9e4b40ac96?api-version=2017-08-15&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: ['14998'] + x-powered-by: [ASP.NET] + status: {code: 202, message: Accepted} - request: body: null headers: @@ -372,18 +454,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e273ebb0-4b1c-4567-8d27-8b9e4b40ac96?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8","name":"b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8","status":"Deleting","startTime":"2019-02-05T14:29:36.6459686Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e273ebb0-4b1c-4567-8d27-8b9e4b40ac96","name":"e273ebb0-4b1c-4567-8d27-8b9e4b40ac96","status":"Deleting","startTime":"2019-03-26T10:56:53.9033741Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:30:39 GMT'] + date: ['Tue, 26 Mar 2019 10:57:25 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] @@ -398,18 +482,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e273ebb0-4b1c-4567-8d27-8b9e4b40ac96?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8","name":"b7c55a56-4d5e-4bec-9bf2-cb0e83971cf8","status":"Succeeded","startTime":"2019-02-05T14:29:36.6459686Z","endTime":"2019-02-05T14:30:43.2326778Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e273ebb0-4b1c-4567-8d27-8b9e4b40ac96","name":"e273ebb0-4b1c-4567-8d27-8b9e4b40ac96","status":"Succeeded","startTime":"2019-03-26T10:56:53.9033741Z","endTime":"2019-03-26T10:57:50.9525505Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:31:11 GMT'] + date: ['Tue, 26 Mar 2019 10:57: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] @@ -424,7 +510,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 @@ -436,7 +522,7 @@ interactions: cache-control: [no-cache] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:31:17 GMT'] + date: ['Tue, 26 Mar 2019 10:58:04 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -451,20 +537,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f99cae53-b754-412f-9a0f-7691b41649a3?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed32221c-109e-4f8b-8688-c8264dd8e6e2?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:31:19 GMT'] + date: ['Tue, 26 Mar 2019 10:58:07 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f99cae53-b754-412f-9a0f-7691b41649a3?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed32221c-109e-4f8b-8688-c8264dd8e6e2?api-version=2017-08-15&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] @@ -478,18 +566,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f99cae53-b754-412f-9a0f-7691b41649a3?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed32221c-109e-4f8b-8688-c8264dd8e6e2?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f99cae53-b754-412f-9a0f-7691b41649a3","name":"f99cae53-b754-412f-9a0f-7691b41649a3","status":"Succeeded","startTime":"2019-02-05T14:31:19.9022004Z","endTime":"2019-02-05T14:31:23.3396289Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/ed32221c-109e-4f8b-8688-c8264dd8e6e2","name":"ed32221c-109e-4f8b-8688-c8264dd8e6e2","status":"Succeeded","startTime":"2019-03-26T10:58:07.6456034Z","endTime":"2019-03-26T10:58:10.874598Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['544'] + content-length: ['543'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:31:50 GMT'] + date: ['Tue, 26 Mar 2019 10:58:40 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -504,7 +594,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -516,7 +606,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:31:57 GMT'] + date: ['Tue, 26 Mar 2019 10:58:46 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -531,24 +621,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f18f76a7-a197-45ef-aef0-050d9cfbf752?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21984151-ef90-4a29-9ea5-800c89ff6c08?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:31:59 GMT'] + date: ['Tue, 26 Mar 2019 10:58:49 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f18f76a7-a197-45ef-aef0-050d9cfbf752?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21984151-ef90-4a29-9ea5-800c89ff6c08?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14998'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -558,18 +650,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f18f76a7-a197-45ef-aef0-050d9cfbf752?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21984151-ef90-4a29-9ea5-800c89ff6c08?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f18f76a7-a197-45ef-aef0-050d9cfbf752","name":"f18f76a7-a197-45ef-aef0-050d9cfbf752","status":"Succeeded","startTime":"2019-02-05T14:31:59.5448476Z","endTime":"2019-02-05T14:31:59.6068394Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/21984151-ef90-4a29-9ea5-800c89ff6c08","name":"21984151-ef90-4a29-9ea5-800c89ff6c08","status":"Succeeded","startTime":"2019-03-26T10:58:49.5026365Z","endTime":"2019-03-26T10:58:49.5807817Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:32:31 GMT'] + date: ['Tue, 26 Mar 2019 10:59:21 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -584,7 +678,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -596,7 +690,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:32:32 GMT'] + date: ['Tue, 26 Mar 2019 10:59:25 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml b/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml index 06299d4fb2e4..0f787240712b 100644 --- a/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml +++ b/azure-mgmt-netapp/tests/recordings/test_volume.test_update_volume.yaml @@ -8,21 +8,23 @@ interactions: Content-Length: ['23'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A32%3A37.6966153Z''\"","location":"westus2","properties":{"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T11%3A13%3A53.3784593Z''\"","location":"westus2","properties":{"provisioningState":"Creating","name":"sdk-py-tests-acc-1"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77314b85-76de-4576-a979-0a61ae2a23ac?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eea936c-ca7c-4ccf-af19-548ff1b92a09?api-version=2017-08-15'] cache-control: [no-cache] - content-length: ['346'] + content-length: ['374'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:32:38 GMT'] - etag: [W/"datetime'2019-02-05T14%3A32%3A37.6966153Z'"] + date: ['Tue, 26 Mar 2019 11:13:53 GMT'] + etag: [W/"datetime'2019-03-26T11%3A13%3A53.3784593Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -36,18 +38,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77314b85-76de-4576-a979-0a61ae2a23ac?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eea936c-ca7c-4ccf-af19-548ff1b92a09?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/77314b85-76de-4576-a979-0a61ae2a23ac","name":"77314b85-76de-4576-a979-0a61ae2a23ac","status":"Succeeded","startTime":"2019-02-05T14:32:37.65045Z","endTime":"2019-02-05T14:32:37.9190218Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/0eea936c-ca7c-4ccf-af19-548ff1b92a09","name":"0eea936c-ca7c-4ccf-af19-548ff1b92a09","status":"Succeeded","startTime":"2019-03-26T11:13:53.3128806Z","endTime":"2019-03-26T11:13:53.6411189Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['508'] + content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:33:09 GMT'] + date: ['Tue, 26 Mar 2019 11:14:25 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] @@ -62,19 +66,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-02-05T14%3A32%3A37.9658062Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1","name":"sdk-py-tests-acc-1","type":"Microsoft.NetApp/netAppAccounts","etag":"W/\"datetime''2019-03-26T11%3A13%3A53.6866789Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","name":"sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['347'] + content-length: ['375'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:33:10 GMT'] - etag: [W/"datetime'2019-02-05T14%3A32%3A37.9658062Z'"] + date: ['Tue, 26 Mar 2019 11:14:26 GMT'] + etag: [W/"datetime'2019-03-26T11%3A13%3A53.6866789Z'"] 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] @@ -92,22 +98,24 @@ interactions: Content-Length: ['89'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] location: [westus2] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A33%3A14.2225452Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T11%3A14%3A29.2440097Z''\"","location":"westus2","properties":{"serviceLevel":"Premium","size":4398046511104,"provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1776f00-8817-4f92-982b-d1816ed9e0dc?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e44839a-412e-4075-88ea-92d6bbd58b3c?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['460'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:33:14 GMT'] - etag: [W/"datetime'2019-02-05T14%3A33%3A14.2225452Z'"] + date: ['Tue, 26 Mar 2019 11:14:28 GMT'] + etag: [W/"datetime'2019-03-26T11%3A14%3A29.2440097Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] @@ -121,18 +129,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1776f00-8817-4f92-982b-d1816ed9e0dc?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e44839a-412e-4075-88ea-92d6bbd58b3c?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/b1776f00-8817-4f92-982b-d1816ed9e0dc","name":"b1776f00-8817-4f92-982b-d1816ed9e0dc","status":"Succeeded","startTime":"2019-02-05T14:33:14.1794339Z","endTime":"2019-02-05T14:33:14.6782774Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/7e44839a-412e-4075-88ea-92d6bbd58b3c","name":"7e44839a-412e-4075-88ea-92d6bbd58b3c","status":"Succeeded","startTime":"2019-03-26T11:14:29.1763735Z","endTime":"2019-03-26T11:14:29.7971061Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:33:46 GMT'] + date: ['Tue, 26 Mar 2019 11:15:02 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -147,19 +157,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-02-05T14%3A33%3A14.7349079Z''\"","location":"westus2","properties":{"poolId":"59fb9960-7296-1dee-a58d-a64beaba56f6","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","serviceLevel":"Premium","size":4398046511104,"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools","etag":"W/\"datetime''2019-03-26T11%3A14%3A29.8444374Z''\"","location":"westus2","properties":{"poolId":"a830c206-0017-0850-ac1a-8cf793949081","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: ['557'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:33:47 GMT'] - etag: [W/"datetime'2019-02-05T14%3A33%3A14.7349079Z'"] + date: ['Tue, 26 Mar 2019 11:15:03 GMT'] + etag: [W/"datetime'2019-03-26T11%3A14%3A29.8444374Z'"] 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] @@ -179,25 +191,27 @@ interactions: Content-Length: ['316'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A34%3A01.7833145Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A15%3A18.8753663Z''\"","location":"westus2","properties":{"usageThreshold":107374182400,"subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","provisioningState":"Creating"}}'} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a1d0efe-3606-427f-89ae-3a5f4636fa96?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['737'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:34:01 GMT'] - etag: [W/"datetime'2019-02-05T14%3A34%3A01.7833145Z'"] + date: ['Tue, 26 Mar 2019 11:15:18 GMT'] + etag: [W/"datetime'2019-03-26T11%3A15%3A18.8753663Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1196'] + x-ms-ratelimit-remaining-subscription-writes: ['1198'] x-powered-by: [ASP.NET] status: {code: 201, message: Created} - request: @@ -207,18 +221,132 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856","name":"281c0be2-b5da-41c4-adcc-ec1082d5b856","status":"Creating","startTime":"2019-03-26T11:15:18.7959231Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:15:50 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a1d0efe-3606-427f-89ae-3a5f4636fa96?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/2a1d0efe-3606-427f-89ae-3a5f4636fa96","name":"2a1d0efe-3606-427f-89ae-3a5f4636fa96","status":"Succeeded","startTime":"2019-02-05T14:34:01.7405893Z","endTime":"2019-02-05T14:34:33.0059833Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856","name":"281c0be2-b5da-41c4-adcc-ec1082d5b856","status":"Creating","startTime":"2019-03-26T11:15:18.7959231Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:16:23 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856","name":"281c0be2-b5da-41c4-adcc-ec1082d5b856","status":"Creating","startTime":"2019-03-26T11:15:18.7959231Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:16:56 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856","name":"281c0be2-b5da-41c4-adcc-ec1082d5b856","status":"Creating","startTime":"2019-03-26T11:15:18.7959231Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1"}}'} + headers: + access-control-expose-headers: [Request-Context] + cache-control: [no-cache] + content-length: ['560'] + content-type: [application/json; charset=utf-8] + date: ['Tue, 26 Mar 2019 11:17:28 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-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856?api-version=2017-08-15 + response: + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/281c0be2-b5da-41c4-adcc-ec1082d5b856","name":"281c0be2-b5da-41c4-adcc-ec1082d5b856","status":"Succeeded","startTime":"2019-03-26T11:15:18.7959231Z","endTime":"2019-03-26T11:17:51.0892189Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:34:33 GMT'] + date: ['Tue, 26 Mar 2019 11:18:01 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -233,19 +361,21 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A34%3A33.0365077Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"c87135aa-adb8-65d2-5f1c-93f9b492a626","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_0e082cd1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"c0e8d7a5-8eef-935f-d2a1-00d60d401c53","fileSystemId":"c87135aa-adb8-65d2-5f1c-93f9b492a626","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}]}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A17%3A51.1218256Z''\"","location":"westus2","properties":{"provisioningState":"Succeeded","fileSystemId":"171e8717-9549-19ac-a3f7-9c60c2416409","serviceLevel":"Premium","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_0c7cd248","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7d11f0d5-8e5b-c096-af59-dd82e9988e57","fileSystemId":"171e8717-9549-19ac-a3f7-9c60c2416409","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}]}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['1424'] + content-length: ['1426'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:34:34 GMT'] - etag: [W/"datetime'2019-02-05T14%3A34%3A33.0365077Z'"] + date: ['Tue, 26 Mar 2019 11:18:02 GMT'] + etag: [W/"datetime'2019-03-26T11%3A17%3A51.1218256Z'"] 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] @@ -265,26 +395,28 @@ interactions: Content-Length: ['317'] Content-Type: [application/json; charset=utf-8] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] accept-language: [en-US] method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/Volumes","etag":"W/\"datetime''2019-02-05T14%3A34%3A40.7800044Z''\"","location":"westus2","properties":{"fileSystemId":"c87135aa-adb8-65d2-5f1c-93f9b492a626","serviceLevel":"Standard","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","usageThreshold":107374182400,"exportPolicy":{"rules":[{"ruleIndex":1,"unixReadOnly":false,"unixReadWrite":true,"cifs":false,"nfsv3":true,"nfsv4":false,"allowedClients":"0.0.0.0/0"}]},"baremetalTenantId":"baremetalTenant_svm_38ab86f19d30413b8fc0d31ad85fa6a1_0e082cd1","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"c0e8d7a5-8eef-935f-d2a1-00d60d401c53","fileSystemId":"c87135aa-adb8-65d2-5f1c-93f9b492a626","startIp":"10.0.2.4","endIp":"10.0.2.4","gateway":"10.0.2.1","netmask":"255.255.255.0","ipAddress":"10.0.2.4"}],"provisioningState":"Succeeded"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1","name":"sdk-py-tests-acc-1/sdk-py-tests-pool-1/sdk-py-tests-vol-1","type":"Microsoft.NetApp/netAppAccounts/capacityPools/volumes","etag":"W/\"datetime''2019-03-26T11%3A18%3A08.9845514Z''\"","location":"westus2","properties":{"fileSystemId":"171e8717-9549-19ac-a3f7-9c60c2416409","serviceLevel":"Standard","creationToken":"sdk-py-tests-vol-1","ownerId":"38ab86f1-9d30-413b-8fc0-d31ad85fa6a1","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_38ab86f19d30413b8fc0d31ad85fa6a1_0c7cd248","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.Network/virtualNetworks/sdk-py-tests-rg-vnet/subnets/default","mountTargets":[{"provisioningState":"Succeeded","mountTargetId":"7d11f0d5-8e5b-c096-af59-dd82e9988e57","fileSystemId":"171e8717-9549-19ac-a3f7-9c60c2416409","startIp":"10.0.1.5","endIp":"10.0.1.5","gateway":"10.0.1.1","netmask":"255.255.255.240","ipAddress":"10.0.1.5"}],"provisioningState":"Succeeded"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] - content-length: ['1350'] + content-length: ['1413'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:34:39 GMT'] - etag: [W/"datetime'2019-02-05T14%3A34%3A40.7800044Z'"] + date: ['Tue, 26 Mar 2019 11:18:08 GMT'] + etag: [W/"datetime'2019-03-26T11%3A18%3A08.9845514Z'"] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] vary: [Accept-Encoding] x-content-type-options: [nosniff] - x-ms-ratelimit-remaining-subscription-writes: ['1198'] + x-ms-ratelimit-remaining-subscription-writes: ['1197'] x-powered-by: [ASP.NET] status: {code: 200, message: OK} - request: @@ -295,24 +427,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/816d295f-645e-4702-a041-497389609df7?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93e027e2-5e22-4009-87d0-5294b1c9cea6?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:34:42 GMT'] + date: ['Tue, 26 Mar 2019 11:18:11 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/816d295f-645e-4702-a041-497389609df7?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93e027e2-5e22-4009-87d0-5294b1c9cea6?api-version=2017-08-15&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: ['14996'] + x-ms-ratelimit-remaining-subscription-deletes: ['14995'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -322,18 +456,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/816d295f-645e-4702-a041-497389609df7?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93e027e2-5e22-4009-87d0-5294b1c9cea6?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/816d295f-645e-4702-a041-497389609df7","name":"816d295f-645e-4702-a041-497389609df7","status":"Deleting","startTime":"2019-02-05T14:34:42.662299Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93e027e2-5e22-4009-87d0-5294b1c9cea6","name":"93e027e2-5e22-4009-87d0-5294b1c9cea6","status":"Deleting","startTime":"2019-03-26T11:18:12.1785513Z","endTime":"0001-01-01T00:00:00Z","percentComplete":0.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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: ['559'] + content-length: ['560'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:35:13 GMT'] + date: ['Tue, 26 Mar 2019 11:18:44 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -348,18 +484,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/816d295f-645e-4702-a041-497389609df7?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93e027e2-5e22-4009-87d0-5294b1c9cea6?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/816d295f-645e-4702-a041-497389609df7","name":"816d295f-645e-4702-a041-497389609df7","status":"Succeeded","startTime":"2019-02-05T14:34:42.662299Z","endTime":"2019-02-05T14:35:42.1079162Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/Volumes/sdk-py-tests-vol-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/93e027e2-5e22-4009-87d0-5294b1c9cea6","name":"93e027e2-5e22-4009-87d0-5294b1c9cea6","status":"Succeeded","startTime":"2019-03-26T11:18:12.1785513Z","endTime":"2019-03-26T11:19:09.0697459Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/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'] + content-length: ['571'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:35:44 GMT'] + date: ['Tue, 26 Mar 2019 11:19:17 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] @@ -374,7 +512,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1/volumes/sdk-py-tests-vol-1?api-version=2017-08-15 @@ -386,7 +524,7 @@ interactions: cache-control: [no-cache] content-length: ['230'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:35:50 GMT'] + date: ['Tue, 26 Mar 2019 11:19:22 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -401,20 +539,22 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5dba87b5-4bd1-4f72-bfd9-aac90e8b1e28?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b3b123d-a7bc-4591-a263-f8d9148426e7?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:35:53 GMT'] + date: ['Tue, 26 Mar 2019 11:19:26 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5dba87b5-4bd1-4f72-bfd9-aac90e8b1e28?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b3b123d-a7bc-4591-a263-f8d9148426e7?api-version=2017-08-15&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] @@ -428,18 +568,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5dba87b5-4bd1-4f72-bfd9-aac90e8b1e28?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b3b123d-a7bc-4591-a263-f8d9148426e7?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/5dba87b5-4bd1-4f72-bfd9-aac90e8b1e28","name":"5dba87b5-4bd1-4f72-bfd9-aac90e8b1e28","status":"Succeeded","startTime":"2019-02-05T14:35:53.9449898Z","endTime":"2019-02-05T14:35:57.3154183Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/8b3b123d-a7bc-4591-a263-f8d9148426e7","name":"8b3b123d-a7bc-4591-a263-f8d9148426e7","status":"Succeeded","startTime":"2019-03-26T11:19:25.9785543Z","endTime":"2019-03-26T11:19:29.1616016Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['544'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:36:24 GMT'] + date: ['Tue, 26 Mar 2019 11:19:57 GMT'] expires: ['-1'] pragma: [no-cache] + request-context: ['appId=cid-v1:2c4cb680-0a1f-424d-bb8d-8e650ba68d53'] server: [Microsoft-IIS/10.0] strict-transport-security: [max-age=31536000; includeSubDomains] transfer-encoding: [chunked] @@ -454,7 +596,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1/capacityPools/sdk-py-tests-pool-1?api-version=2017-08-15 @@ -466,7 +608,7 @@ interactions: cache-control: [no-cache] content-length: ['203'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:36:30 GMT'] + date: ['Tue, 26 Mar 2019 11:20:03 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] @@ -481,24 +623,26 @@ interactions: Connection: [keep-alive] Content-Length: ['0'] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 response: body: {string: !!python/unicode ''} headers: - azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1fdaca4-cc15-4d3e-8e22-2995f549d9ec?api-version=2017-08-15'] + access-control-expose-headers: [Request-Context] + azure-asyncoperation: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f132c417-b8cc-402f-afcb-2b3664159bad?api-version=2017-08-15'] cache-control: [no-cache] content-length: ['0'] - date: ['Tue, 05 Feb 2019 14:36:32 GMT'] + date: ['Tue, 26 Mar 2019 11:20:05 GMT'] expires: ['-1'] - location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1fdaca4-cc15-4d3e-8e22-2995f549d9ec?api-version=2017-08-15&operationResultResponseType=Location'] + location: ['https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f132c417-b8cc-402f-afcb-2b3664159bad?api-version=2017-08-15&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: ['14997'] + x-ms-ratelimit-remaining-subscription-deletes: ['14995'] x-powered-by: [ASP.NET] status: {code: 202, message: Accepted} - request: @@ -508,18 +652,20 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.0 Azure-SDK-For-Python] method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1fdaca4-cc15-4d3e-8e22-2995f549d9ec?api-version=2017-08-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f132c417-b8cc-402f-afcb-2b3664159bad?api-version=2017-08-15 response: - body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/e1fdaca4-cc15-4d3e-8e22-2995f549d9ec","name":"e1fdaca4-cc15-4d3e-8e22-2995f549d9ec","status":"Succeeded","startTime":"2019-02-05T14:36:33.0455952Z","endTime":"2019-02-05T14:36:33.1584574Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} + body: {string: !!python/unicode '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp/locations/westus2/operationResults/f132c417-b8cc-402f-afcb-2b3664159bad","name":"f132c417-b8cc-402f-afcb-2b3664159bad","status":"Succeeded","startTime":"2019-03-26T11:20:06.3692396Z","endTime":"2019-03-26T11:20:06.4942392Z","percentComplete":100.0,"properties":{"resourceName":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sdk-py-tests-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1"}}'} headers: + access-control-expose-headers: [Request-Context] cache-control: [no-cache] content-length: ['510'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:37:03 GMT'] + date: ['Tue, 26 Mar 2019 11:20:37 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] @@ -534,7 +680,7 @@ interactions: Accept-Encoding: ['gzip, deflate'] Connection: [keep-alive] User-Agent: [python/2.7.10 (Darwin-16.7.0-x86_64-i386-64bit) msrest/0.6.3 msrest_azure/0.4.34 - azure-mgmt-netapp/0.1.0 Azure-SDK-For-Python] + azure-mgmt-netapp/0.3.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-rg/providers/Microsoft.NetApp/netAppAccounts/sdk-py-tests-acc-1?api-version=2017-08-15 @@ -546,7 +692,7 @@ interactions: cache-control: [no-cache] content-length: ['169'] content-type: [application/json; charset=utf-8] - date: ['Tue, 05 Feb 2019 14:37:06 GMT'] + date: ['Tue, 26 Mar 2019 11:20:40 GMT'] expires: ['-1'] pragma: [no-cache] strict-transport-security: [max-age=31536000; includeSubDomains] diff --git a/azure-mgmt-netapp/tests/test_account.py b/azure-mgmt-netapp/tests/test_account.py index 55030113bff9..0c696bdbdc67 100644 --- a/azure-mgmt-netapp/tests/test_account.py +++ b/azure-mgmt-netapp/tests/test_account.py @@ -3,16 +3,18 @@ from azure.mgmt.resource import ResourceManagementClient from devtools_testutils import AzureMgmtTestCase import azure.mgmt.netapp.models -from azure.mgmt.netapp.models import NetAppAccountPatch +from azure.mgmt.netapp.models import NetAppAccount, NetAppAccountPatch from setup import * accounts = [TEST_ACC_1, TEST_ACC_2] -def create_account(client, rg, acc_name, location=LOCATION): +def create_account(client, rg, acc_name, location=LOCATION, tags=None, active_directories=None): + account_body = NetAppAccount(location=location, tags=tags, active_directories=active_directories) + account = client.accounts.create_or_update( + account_body, rg, - acc_name, - location + acc_name ).result() return account @@ -79,7 +81,7 @@ def test_patch_account(self): tag = {'Tag1': 'Value2'} netapp_account_patch = NetAppAccountPatch(tags=tag) - account = self.client.accounts.update(TEST_RG, TEST_ACC_1, tags=netapp_account_patch.tags) + account = self.client.accounts.update(netapp_account_patch, TEST_RG, TEST_ACC_1) self.assertTrue(account.tags['Tag1'] == 'Value2') delete_account(self.client, TEST_RG, TEST_ACC_1) diff --git a/azure-mgmt-netapp/tests/test_pool.py b/azure-mgmt-netapp/tests/test_pool.py index b8731389aed8..2204a7646f45 100644 --- a/azure-mgmt-netapp/tests/test_pool.py +++ b/azure-mgmt-netapp/tests/test_pool.py @@ -111,10 +111,10 @@ def test_patch_pool(self): create_pool(self.client, TEST_RG, TEST_ACC_1, TEST_POOL_1) tag = {'Tag2': 'Value1'} - capacity_pool_patch = CapacityPoolPatch(tags=tag) - - pool = self.client.pools.update(TEST_RG, TEST_ACC_1, TEST_POOL_1, tags=capacity_pool_patch.tags) + capacity_pool_patch = CapacityPoolPatch(service_level="Standard", tags=tag) + pool = self.client.pools.update(capacity_pool_patch, TEST_RG, TEST_ACC_1, TEST_POOL_1) + self.assertEqual(pool.service_level, "Standard") self.assertTrue(pool.tags['Tag2'] == 'Value1') self.client.pools.delete(TEST_RG, TEST_ACC_1, TEST_POOL_1).wait() From 2d07c27c952dc3d7bc280f8e96fcf16bc77c6720 Mon Sep 17 00:00:00 2001 From: iscai-msft <43154838+iscai-msft@users.noreply.github.com> Date: Tue, 26 Mar 2019 13:05:44 -0700 Subject: [PATCH 5/5] Update HISTORY.rst --- azure-mgmt-netapp/HISTORY.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/azure-mgmt-netapp/HISTORY.rst b/azure-mgmt-netapp/HISTORY.rst index dcb1f3e64700..147e0891b8c7 100644 --- a/azure-mgmt-netapp/HISTORY.rst +++ b/azure-mgmt-netapp/HISTORY.rst @@ -16,7 +16,6 @@ Release History **Breaking changes** -- Operation PoolsOperations.update has a new signature - Operation PoolsOperations.update has a new signature - Model MountTarget no longer has parameter vlan_id - Operation AccountsOperations.update has a new signature