From f272d7667881022f3e33027d430cc3415474e986 Mon Sep 17 00:00:00 2001 From: "Kaihui (Kerwin) Sun" Date: Wed, 3 Feb 2021 13:33:48 +0800 Subject: [PATCH] T2 compute 2021 02 02 (#16486) * CodeGen from PR 12756 in Azure/azure-rest-api-specs Add 2020-10-01-preview-only to python.md (#12756) * add 2020-10-01-only to python.md * fix * test,version,CHANGELOG * fix test Co-authored-by: SDKAuto --- sdk/compute/azure-mgmt-compute/CHANGELOG.md | 9 + sdk/compute/azure-mgmt-compute/README.md | 10 + .../compute/_compute_management_client.py | 56 + .../azure/mgmt/compute/_version.py | 2 +- .../compute/aio/_compute_management_client.py | 56 + .../compute/v2019_03_01/models/__init__.py | 3 + .../_compute_management_client_enums.py | 4 +- .../compute/v2019_03_01/models/_models.py | 63 +- .../compute/v2019_03_01/models/_models_py3.py | 71 +- .../compute/v2019_07_01/models/__init__.py | 3 + .../_compute_management_client_enums.py | 2 +- .../compute/v2019_07_01/models/_models.py | 65 +- .../compute/v2019_07_01/models/_models_py3.py | 73 +- .../compute/v2019_12_01/models/__init__.py | 3 + .../compute/v2019_12_01/models/_models.py | 65 +- .../compute/v2019_12_01/models/_models_py3.py | 73 +- .../compute/v2020_06_01/models/_models.py | 2 +- .../compute/v2020_06_01/models/_models_py3.py | 2 +- .../compute/v2020_09_30/models/_models.py | 11 +- .../compute/v2020_09_30/models/_models_py3.py | 11 +- .../compute/v2020_10_01_preview/__init__.py | 16 + .../_compute_management_client.py | 84 + .../v2020_10_01_preview/_configuration.py | 70 + .../v2020_10_01_preview/_metadata.json | 64 + .../v2020_10_01_preview/aio/__init__.py | 10 + .../aio/_compute_management_client.py | 78 + .../v2020_10_01_preview/aio/_configuration.py | 66 + .../aio/operations/__init__.py | 19 + ...cloud_service_role_instances_operations.py | 780 +++++ .../_cloud_service_roles_operations.py | 179 ++ .../operations/_cloud_services_operations.py | 1371 +++++++++ ...cloud_services_update_domain_operations.py | 314 ++ .../v2020_10_01_preview/models/__init__.py | 137 + .../_compute_management_client_enums.py | 50 + .../v2020_10_01_preview/models/_models.py | 1229 ++++++++ .../v2020_10_01_preview/models/_models_py3.py | 1340 +++++++++ .../operations/__init__.py | 19 + ...cloud_service_role_instances_operations.py | 796 +++++ .../_cloud_service_roles_operations.py | 185 ++ .../operations/_cloud_services_operations.py | 1397 +++++++++ ...cloud_services_update_domain_operations.py | 322 ++ .../mgmt/compute/v2020_10_01_preview/py.typed | 1 + ...ompute.test_compute_availability_sets.yaml | 16 +- ...mt_compute.test_compute_log_analytics.yaml | 65 +- ...st_compute_proximity_placement_groups.yaml | 16 +- ...mt_compute_base_async.test_compute_vm.yaml | 1915 +++++++----- ..._dedicated_hosts.test_dedicated_hosts.yaml | 156 +- ...te_disks.test_compute_disk_encryption.yaml | 156 +- ...mgmt_compute_disks.test_compute_disks.yaml | 172 +- ...ompute_disks.test_compute_disks_multi.yaml | 168 +- ..._mgmt_compute_disks.test_compute_shot.yaml | 424 ++- ...pute_galleries.test_compute_galleries.yaml | 615 ++-- .../test_mgmt_compute_vm.test_compute_vm.yaml | 1121 ++++--- ...est_mgmt_compute_vm.test_compute_vm_2.yaml | 552 ++-- ...te_vm.test_compute_vm_extension_image.yaml | 12 +- ...mgmt_compute_vm.test_compute_vm_image.yaml | 54 +- .../test_mgmt_compute_vmss.test_compute.yaml | 2673 ++++++++++------- ...compute_vmss.test_compute_vmss_base_2.yaml | 1394 +++++---- ...test_compute_vmss_perform_maintenance.yaml | 576 ++-- ...ss.test_compute_vmss_rolling_upgrades.yaml | 1003 ++++--- ...gmt_compute_vmss.test_compute_vmss_vm.yaml | 1091 ++++--- ...t_compute_vmss.test_compute_vmss_vm_2.yaml | 1193 +++++--- .../tests/test_mgmt_compute_disks.py | 2 +- 63 files changed, 17047 insertions(+), 5438 deletions(-) create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/__init__.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_compute_management_client.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_configuration.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_metadata.json create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/__init__.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/_compute_management_client.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/_configuration.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/__init__.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_service_role_instances_operations.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_service_roles_operations.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_services_operations.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_services_update_domain_operations.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/__init__.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_compute_management_client_enums.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_models.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_models_py3.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/__init__.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_service_role_instances_operations.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_service_roles_operations.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_services_operations.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_services_update_domain_operations.py create mode 100644 sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/py.typed diff --git a/sdk/compute/azure-mgmt-compute/CHANGELOG.md b/sdk/compute/azure-mgmt-compute/CHANGELOG.md index 9ff138d2b514..7505f35b3c24 100644 --- a/sdk/compute/azure-mgmt-compute/CHANGELOG.md +++ b/sdk/compute/azure-mgmt-compute/CHANGELOG.md @@ -1,5 +1,14 @@ # Release History +## 18.2.0 (2021-02-02) + +**Features** + + - Added operation group CloudServicesUpdateDomainOperations + - Added operation group CloudServiceRolesOperations + - Added operation group CloudServiceRoleInstancesOperations + - Added operation group CloudServicesOperations + ## 18.1.0 (2021-01-19) **Features** diff --git a/sdk/compute/azure-mgmt-compute/README.md b/sdk/compute/azure-mgmt-compute/README.md index b19d3b156643..edd3419b165b 100644 --- a/sdk/compute/azure-mgmt-compute/README.md +++ b/sdk/compute/azure-mgmt-compute/README.md @@ -26,6 +26,16 @@ To learn how to use this package, see the [quickstart guide](https://aka.ms/azsd +For docs and references, see [Python SDK References](https://docs.microsoft.com/python/api/overview/azure/) +Code samples for this package can be found at [Compute Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com. +Additional code samples for different Azure services are available at [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples) +# Usage + + +To learn how to use this package, see the [quickstart guide](https://aka.ms/azsdk/python/mgmt) + + + For docs and references, see [Python SDK References](https://docs.microsoft.com/python/api/overview/azure/) Code samples for this package can be found at [Compute Management](https://docs.microsoft.com/samples/browse/?languages=python&term=Getting%20started%20-%20Managing&terms=Getting%20started%20-%20Managing) on docs.microsoft.com. Additional code samples for different Azure services are available at [Samples Repo](https://aka.ms/azsdk/python/mgmt/samples) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_compute_management_client.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_compute_management_client.py index 07182f9f4b05..f256c04c7b94 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_compute_management_client.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_compute_management_client.py @@ -122,6 +122,7 @@ def models(cls, api_version=DEFAULT_API_VERSION): * 2020-06-01: :mod:`v2020_06_01.models` * 2020-06-30: :mod:`v2020_06_30.models` * 2020-09-30: :mod:`v2020_09_30.models` + * 2020-10-01-preview: :mod:`v2020_10_01_preview.models` """ if api_version == '2015-06-15': from .v2015_06_15 import models @@ -180,6 +181,9 @@ def models(cls, api_version=DEFAULT_API_VERSION): elif api_version == '2020-09-30': from .v2020_09_30 import models return models + elif api_version == '2020-10-01-preview': + from .v2020_10_01_preview import models + return models raise ValueError("API version {} is not available".format(api_version)) @property @@ -228,6 +232,58 @@ def availability_sets(self): raise ValueError("API version {} does not have operation group 'availability_sets'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + @property + def cloud_service_role_instances(self): + """Instance depends on the API version: + + * 2020-10-01-preview: :class:`CloudServiceRoleInstancesOperations` + """ + api_version = self._get_api_version('cloud_service_role_instances') + if api_version == '2020-10-01-preview': + from .v2020_10_01_preview.operations import CloudServiceRoleInstancesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'cloud_service_role_instances'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def cloud_service_roles(self): + """Instance depends on the API version: + + * 2020-10-01-preview: :class:`CloudServiceRolesOperations` + """ + api_version = self._get_api_version('cloud_service_roles') + if api_version == '2020-10-01-preview': + from .v2020_10_01_preview.operations import CloudServiceRolesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'cloud_service_roles'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def cloud_services(self): + """Instance depends on the API version: + + * 2020-10-01-preview: :class:`CloudServicesOperations` + """ + api_version = self._get_api_version('cloud_services') + if api_version == '2020-10-01-preview': + from .v2020_10_01_preview.operations import CloudServicesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'cloud_services'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def cloud_services_update_domain(self): + """Instance depends on the API version: + + * 2020-10-01-preview: :class:`CloudServicesUpdateDomainOperations` + """ + api_version = self._get_api_version('cloud_services_update_domain') + if api_version == '2020-10-01-preview': + from .v2020_10_01_preview.operations import CloudServicesUpdateDomainOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'cloud_services_update_domain'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + @property def dedicated_host_groups(self): """Instance depends on the API version: diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_version.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_version.py index 7bccc66ceb40..99c926e0b677 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_version.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_version.py @@ -5,4 +5,4 @@ # license information. # -------------------------------------------------------------------------- -VERSION = "18.1.0" +VERSION = "18.2.0" diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/aio/_compute_management_client.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/aio/_compute_management_client.py index 6f473131d35d..bd260a1831b8 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/aio/_compute_management_client.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/aio/_compute_management_client.py @@ -122,6 +122,7 @@ def models(cls, api_version=DEFAULT_API_VERSION): * 2020-06-01: :mod:`v2020_06_01.models` * 2020-06-30: :mod:`v2020_06_30.models` * 2020-09-30: :mod:`v2020_09_30.models` + * 2020-10-01-preview: :mod:`v2020_10_01_preview.models` """ if api_version == '2015-06-15': from ..v2015_06_15 import models @@ -180,6 +181,9 @@ def models(cls, api_version=DEFAULT_API_VERSION): elif api_version == '2020-09-30': from ..v2020_09_30 import models return models + elif api_version == '2020-10-01-preview': + from ..v2020_10_01_preview import models + return models raise ValueError("API version {} is not available".format(api_version)) @property @@ -228,6 +232,58 @@ def availability_sets(self): raise ValueError("API version {} does not have operation group 'availability_sets'".format(api_version)) return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + @property + def cloud_service_role_instances(self): + """Instance depends on the API version: + + * 2020-10-01-preview: :class:`CloudServiceRoleInstancesOperations` + """ + api_version = self._get_api_version('cloud_service_role_instances') + if api_version == '2020-10-01-preview': + from ..v2020_10_01_preview.aio.operations import CloudServiceRoleInstancesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'cloud_service_role_instances'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def cloud_service_roles(self): + """Instance depends on the API version: + + * 2020-10-01-preview: :class:`CloudServiceRolesOperations` + """ + api_version = self._get_api_version('cloud_service_roles') + if api_version == '2020-10-01-preview': + from ..v2020_10_01_preview.aio.operations import CloudServiceRolesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'cloud_service_roles'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def cloud_services(self): + """Instance depends on the API version: + + * 2020-10-01-preview: :class:`CloudServicesOperations` + """ + api_version = self._get_api_version('cloud_services') + if api_version == '2020-10-01-preview': + from ..v2020_10_01_preview.aio.operations import CloudServicesOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'cloud_services'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + + @property + def cloud_services_update_domain(self): + """Instance depends on the API version: + + * 2020-10-01-preview: :class:`CloudServicesUpdateDomainOperations` + """ + api_version = self._get_api_version('cloud_services_update_domain') + if api_version == '2020-10-01-preview': + from ..v2020_10_01_preview.aio.operations import CloudServicesUpdateDomainOperations as OperationClass + else: + raise ValueError("API version {} does not have operation group 'cloud_services_update_domain'".format(api_version)) + return OperationClass(self._client, self._config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + @property def dedicated_host_groups(self): """Instance depends on the API version: diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/__init__.py index 9cfc43b8bf87..998f7ba41e89 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/__init__.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/__init__.py @@ -144,6 +144,7 @@ from ._models_py3 import UpgradePolicy from ._models_py3 import Usage from ._models_py3 import UsageName + from ._models_py3 import UserArtifactManage from ._models_py3 import UserArtifactSource from ._models_py3 import UserAssignedIdentitiesValue from ._models_py3 import VMScaleSetConvertToSinglePlacementGroupInput @@ -358,6 +359,7 @@ from ._models import UpgradePolicy # type: ignore from ._models import Usage # type: ignore from ._models import UsageName # type: ignore + from ._models import UserArtifactManage # type: ignore from ._models import UserArtifactSource # type: ignore from ._models import UserAssignedIdentitiesValue # type: ignore from ._models import VMScaleSetConvertToSinglePlacementGroupInput # type: ignore @@ -619,6 +621,7 @@ 'UpgradePolicy', 'Usage', 'UsageName', + 'UserArtifactManage', 'UserArtifactSource', 'UserAssignedIdentitiesValue', 'VMScaleSetConvertToSinglePlacementGroupInput', diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_compute_management_client_enums.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_compute_management_client_enums.py index b6a6cd2f8b49..686b80d8b893 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_compute_management_client_enums.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_compute_management_client_enums.py @@ -230,7 +230,9 @@ class OperatingSystemStateTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, En SPECIALIZED = "Specialized" #: Specialized image. Contains already provisioned OS Disk. class OperatingSystemTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): - """The operating system of the osDiskImage. + """This property allows you to specify the supported type of the OS that application is built for. + :code:`
`:code:`
` Possible values are: :code:`
`:code:`
` **Windows** + :code:`
`:code:`
` **Linux** """ WINDOWS = "Windows" diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_models.py index 84584b2e26a4..8895cf70ed61 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_models.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_models.py @@ -1790,7 +1790,7 @@ class GalleryApplicationVersion(Resource): :type location: str :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_03_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -1913,7 +1913,7 @@ def __init__( class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfileBase): - """The publishing profile of a gallery Image Version. + """The publishing profile of a gallery image version. Variables are only populated by the server, and will be ignored when sending a request. @@ -1939,9 +1939,8 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil :type storage_account_type: str or ~azure.mgmt.compute.v2019_03_01.models.StorageAccountType :param source: Required. The source image from which the Image Version is going to be created. :type source: ~azure.mgmt.compute.v2019_03_01.models.UserArtifactSource - :param content_type: Optional. May be used to help process this file. The type of file - contained in the source, e.g. zip, json, etc. - :type content_type: str + :param manage_actions: + :type manage_actions: ~azure.mgmt.compute.v2019_03_01.models.UserArtifactManage :param enable_health_check: Optional. Whether or not this application reports health. :type enable_health_check: bool """ @@ -1959,7 +1958,7 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil 'end_of_life_date': {'key': 'endOfLifeDate', 'type': 'iso-8601'}, 'storage_account_type': {'key': 'storageAccountType', 'type': 'str'}, 'source': {'key': 'source', 'type': 'UserArtifactSource'}, - 'content_type': {'key': 'contentType', 'type': 'str'}, + 'manage_actions': {'key': 'manageActions', 'type': 'UserArtifactManage'}, 'enable_health_check': {'key': 'enableHealthCheck', 'type': 'bool'}, } @@ -1969,7 +1968,7 @@ def __init__( ): super(GalleryApplicationVersionPublishingProfile, self).__init__(**kwargs) self.source = kwargs['source'] - self.content_type = kwargs.get('content_type', None) + self.manage_actions = kwargs.get('manage_actions', None) self.enable_health_check = kwargs.get('enable_health_check', None) @@ -5278,26 +5277,64 @@ def __init__( self.localized_value = kwargs.get('localized_value', None) +class UserArtifactManage(msrest.serialization.Model): + """UserArtifactManage. + + All required parameters must be populated in order to send to Azure. + + :param install: Required. Required. The path and arguments to install the gallery application. + This is limited to 4096 characters. + :type install: str + :param remove: Required. Required. The path and arguments to remove the gallery application. + This is limited to 4096 characters. + :type remove: str + :param update: Optional. The path and arguments to update the gallery application. If not + present, then update operation will invoke remove command on the previous version and install + command on the current version of the gallery application. This is limited to 4096 characters. + :type update: str + """ + + _validation = { + 'install': {'required': True}, + 'remove': {'required': True}, + } + + _attribute_map = { + 'install': {'key': 'install', 'type': 'str'}, + 'remove': {'key': 'remove', 'type': 'str'}, + 'update': {'key': 'update', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(UserArtifactManage, self).__init__(**kwargs) + self.install = kwargs['install'] + self.remove = kwargs['remove'] + self.update = kwargs.get('update', None) + + class UserArtifactSource(msrest.serialization.Model): """The source image from which the Image Version is going to be created. All required parameters must be populated in order to send to Azure. - :param file_name: Required. Required. The fileName of the artifact. - :type file_name: str :param media_link: Required. Required. The mediaLink of the artifact, must be a readable - storage blob. + storage page blob. :type media_link: str + :param default_configuration_link: Optional. The defaultConfigurationLink of the artifact, must + be a readable storage page blob. + :type default_configuration_link: str """ _validation = { - 'file_name': {'required': True}, 'media_link': {'required': True}, } _attribute_map = { - 'file_name': {'key': 'fileName', 'type': 'str'}, 'media_link': {'key': 'mediaLink', 'type': 'str'}, + 'default_configuration_link': {'key': 'defaultConfigurationLink', 'type': 'str'}, } def __init__( @@ -5305,8 +5342,8 @@ def __init__( **kwargs ): super(UserArtifactSource, self).__init__(**kwargs) - self.file_name = kwargs['file_name'] self.media_link = kwargs['media_link'] + self.default_configuration_link = kwargs.get('default_configuration_link', None) class UserAssignedIdentitiesValue(msrest.serialization.Model): diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_models_py3.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_models_py3.py index 2ef70acccf80..40bea055ee16 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_models_py3.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_03_01/models/_models_py3.py @@ -1964,7 +1964,7 @@ class GalleryApplicationVersion(Resource): :type location: str :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_03_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -2100,7 +2100,7 @@ def __init__( class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfileBase): - """The publishing profile of a gallery Image Version. + """The publishing profile of a gallery image version. Variables are only populated by the server, and will be ignored when sending a request. @@ -2126,9 +2126,8 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil :type storage_account_type: str or ~azure.mgmt.compute.v2019_03_01.models.StorageAccountType :param source: Required. The source image from which the Image Version is going to be created. :type source: ~azure.mgmt.compute.v2019_03_01.models.UserArtifactSource - :param content_type: Optional. May be used to help process this file. The type of file - contained in the source, e.g. zip, json, etc. - :type content_type: str + :param manage_actions: + :type manage_actions: ~azure.mgmt.compute.v2019_03_01.models.UserArtifactManage :param enable_health_check: Optional. Whether or not this application reports health. :type enable_health_check: bool """ @@ -2146,7 +2145,7 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil 'end_of_life_date': {'key': 'endOfLifeDate', 'type': 'iso-8601'}, 'storage_account_type': {'key': 'storageAccountType', 'type': 'str'}, 'source': {'key': 'source', 'type': 'UserArtifactSource'}, - 'content_type': {'key': 'contentType', 'type': 'str'}, + 'manage_actions': {'key': 'manageActions', 'type': 'UserArtifactManage'}, 'enable_health_check': {'key': 'enableHealthCheck', 'type': 'bool'}, } @@ -2159,13 +2158,13 @@ def __init__( exclude_from_latest: Optional[bool] = None, end_of_life_date: Optional[datetime.datetime] = None, storage_account_type: Optional[Union[str, "StorageAccountType"]] = None, - content_type: Optional[str] = None, + manage_actions: Optional["UserArtifactManage"] = None, enable_health_check: Optional[bool] = None, **kwargs ): super(GalleryApplicationVersionPublishingProfile, self).__init__(target_regions=target_regions, replica_count=replica_count, exclude_from_latest=exclude_from_latest, end_of_life_date=end_of_life_date, storage_account_type=storage_account_type, **kwargs) self.source = source - self.content_type = content_type + self.manage_actions = manage_actions self.enable_health_check = enable_health_check @@ -5782,38 +5781,80 @@ def __init__( self.localized_value = localized_value +class UserArtifactManage(msrest.serialization.Model): + """UserArtifactManage. + + All required parameters must be populated in order to send to Azure. + + :param install: Required. Required. The path and arguments to install the gallery application. + This is limited to 4096 characters. + :type install: str + :param remove: Required. Required. The path and arguments to remove the gallery application. + This is limited to 4096 characters. + :type remove: str + :param update: Optional. The path and arguments to update the gallery application. If not + present, then update operation will invoke remove command on the previous version and install + command on the current version of the gallery application. This is limited to 4096 characters. + :type update: str + """ + + _validation = { + 'install': {'required': True}, + 'remove': {'required': True}, + } + + _attribute_map = { + 'install': {'key': 'install', 'type': 'str'}, + 'remove': {'key': 'remove', 'type': 'str'}, + 'update': {'key': 'update', 'type': 'str'}, + } + + def __init__( + self, + *, + install: str, + remove: str, + update: Optional[str] = None, + **kwargs + ): + super(UserArtifactManage, self).__init__(**kwargs) + self.install = install + self.remove = remove + self.update = update + + class UserArtifactSource(msrest.serialization.Model): """The source image from which the Image Version is going to be created. All required parameters must be populated in order to send to Azure. - :param file_name: Required. Required. The fileName of the artifact. - :type file_name: str :param media_link: Required. Required. The mediaLink of the artifact, must be a readable - storage blob. + storage page blob. :type media_link: str + :param default_configuration_link: Optional. The defaultConfigurationLink of the artifact, must + be a readable storage page blob. + :type default_configuration_link: str """ _validation = { - 'file_name': {'required': True}, 'media_link': {'required': True}, } _attribute_map = { - 'file_name': {'key': 'fileName', 'type': 'str'}, 'media_link': {'key': 'mediaLink', 'type': 'str'}, + 'default_configuration_link': {'key': 'defaultConfigurationLink', 'type': 'str'}, } def __init__( self, *, - file_name: str, media_link: str, + default_configuration_link: Optional[str] = None, **kwargs ): super(UserArtifactSource, self).__init__(**kwargs) - self.file_name = file_name self.media_link = media_link + self.default_configuration_link = default_configuration_link class UserAssignedIdentitiesValue(msrest.serialization.Model): diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/__init__.py index 705444a63a8e..17aabb899970 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/__init__.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/__init__.py @@ -158,6 +158,7 @@ from ._models_py3 import UpgradePolicy from ._models_py3 import Usage from ._models_py3 import UsageName + from ._models_py3 import UserArtifactManage from ._models_py3 import UserArtifactSource from ._models_py3 import UserAssignedIdentitiesValue from ._models_py3 import VMScaleSetConvertToSinglePlacementGroupInput @@ -387,6 +388,7 @@ from ._models import UpgradePolicy # type: ignore from ._models import Usage # type: ignore from ._models import UsageName # type: ignore + from ._models import UserArtifactManage # type: ignore from ._models import UserArtifactSource # type: ignore from ._models import UserAssignedIdentitiesValue # type: ignore from ._models import VMScaleSetConvertToSinglePlacementGroupInput # type: ignore @@ -665,6 +667,7 @@ 'UpgradePolicy', 'Usage', 'UsageName', + 'UserArtifactManage', 'UserArtifactSource', 'UserAssignedIdentitiesValue', 'VMScaleSetConvertToSinglePlacementGroupInput', diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_compute_management_client_enums.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_compute_management_client_enums.py index db5174b68e4e..2c8c68dcba49 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_compute_management_client_enums.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_compute_management_client_enums.py @@ -243,7 +243,7 @@ class OperatingSystemStateTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, En SPECIALIZED = "Specialized" #: Specialized image. Contains already provisioned OS Disk. class OperatingSystemTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): - """The operating system of the osDiskImage. + """The Operating System type. """ WINDOWS = "Windows" diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_models.py index 7ea5aff57707..b753791be8ba 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_models.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_models.py @@ -2085,7 +2085,7 @@ class GalleryApplicationVersion(Resource): :type location: str :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_07_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -2208,7 +2208,7 @@ def __init__( class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfileBase): - """The publishing profile of a gallery Image Version. + """The publishing profile of a gallery image version. Variables are only populated by the server, and will be ignored when sending a request. @@ -2234,9 +2234,8 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil :type storage_account_type: str or ~azure.mgmt.compute.v2019_07_01.models.StorageAccountType :param source: Required. The source image from which the Image Version is going to be created. :type source: ~azure.mgmt.compute.v2019_07_01.models.UserArtifactSource - :param content_type: Optional. May be used to help process this file. The type of file - contained in the source, e.g. zip, json, etc. - :type content_type: str + :param manage_actions: + :type manage_actions: ~azure.mgmt.compute.v2019_07_01.models.UserArtifactManage :param enable_health_check: Optional. Whether or not this application reports health. :type enable_health_check: bool """ @@ -2254,7 +2253,7 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil 'end_of_life_date': {'key': 'endOfLifeDate', 'type': 'iso-8601'}, 'storage_account_type': {'key': 'storageAccountType', 'type': 'str'}, 'source': {'key': 'source', 'type': 'UserArtifactSource'}, - 'content_type': {'key': 'contentType', 'type': 'str'}, + 'manage_actions': {'key': 'manageActions', 'type': 'UserArtifactManage'}, 'enable_health_check': {'key': 'enableHealthCheck', 'type': 'bool'}, } @@ -2264,7 +2263,7 @@ def __init__( ): super(GalleryApplicationVersionPublishingProfile, self).__init__(**kwargs) self.source = kwargs['source'] - self.content_type = kwargs.get('content_type', None) + self.manage_actions = kwargs.get('manage_actions', None) self.enable_health_check = kwargs.get('enable_health_check', None) @@ -2275,7 +2274,7 @@ class GalleryApplicationVersionUpdate(UpdateResource): :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_07_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -5897,26 +5896,64 @@ def __init__( self.localized_value = kwargs.get('localized_value', None) +class UserArtifactManage(msrest.serialization.Model): + """UserArtifactManage. + + All required parameters must be populated in order to send to Azure. + + :param install: Required. Required. The path and arguments to install the gallery application. + This is limited to 4096 characters. + :type install: str + :param remove: Required. Required. The path and arguments to remove the gallery application. + This is limited to 4096 characters. + :type remove: str + :param update: Optional. The path and arguments to update the gallery application. If not + present, then update operation will invoke remove command on the previous version and install + command on the current version of the gallery application. This is limited to 4096 characters. + :type update: str + """ + + _validation = { + 'install': {'required': True}, + 'remove': {'required': True}, + } + + _attribute_map = { + 'install': {'key': 'install', 'type': 'str'}, + 'remove': {'key': 'remove', 'type': 'str'}, + 'update': {'key': 'update', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(UserArtifactManage, self).__init__(**kwargs) + self.install = kwargs['install'] + self.remove = kwargs['remove'] + self.update = kwargs.get('update', None) + + class UserArtifactSource(msrest.serialization.Model): """The source image from which the Image Version is going to be created. All required parameters must be populated in order to send to Azure. - :param file_name: Required. Required. The fileName of the artifact. - :type file_name: str :param media_link: Required. Required. The mediaLink of the artifact, must be a readable - storage blob. + storage page blob. :type media_link: str + :param default_configuration_link: Optional. The defaultConfigurationLink of the artifact, must + be a readable storage page blob. + :type default_configuration_link: str """ _validation = { - 'file_name': {'required': True}, 'media_link': {'required': True}, } _attribute_map = { - 'file_name': {'key': 'fileName', 'type': 'str'}, 'media_link': {'key': 'mediaLink', 'type': 'str'}, + 'default_configuration_link': {'key': 'defaultConfigurationLink', 'type': 'str'}, } def __init__( @@ -5924,8 +5961,8 @@ def __init__( **kwargs ): super(UserArtifactSource, self).__init__(**kwargs) - self.file_name = kwargs['file_name'] self.media_link = kwargs['media_link'] + self.default_configuration_link = kwargs.get('default_configuration_link', None) class UserAssignedIdentitiesValue(msrest.serialization.Model): diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_models_py3.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_models_py3.py index fdb9722539de..75cb44c41166 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_models_py3.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/models/_models_py3.py @@ -2289,7 +2289,7 @@ class GalleryApplicationVersion(Resource): :type location: str :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_07_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -2425,7 +2425,7 @@ def __init__( class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfileBase): - """The publishing profile of a gallery Image Version. + """The publishing profile of a gallery image version. Variables are only populated by the server, and will be ignored when sending a request. @@ -2451,9 +2451,8 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil :type storage_account_type: str or ~azure.mgmt.compute.v2019_07_01.models.StorageAccountType :param source: Required. The source image from which the Image Version is going to be created. :type source: ~azure.mgmt.compute.v2019_07_01.models.UserArtifactSource - :param content_type: Optional. May be used to help process this file. The type of file - contained in the source, e.g. zip, json, etc. - :type content_type: str + :param manage_actions: + :type manage_actions: ~azure.mgmt.compute.v2019_07_01.models.UserArtifactManage :param enable_health_check: Optional. Whether or not this application reports health. :type enable_health_check: bool """ @@ -2471,7 +2470,7 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil 'end_of_life_date': {'key': 'endOfLifeDate', 'type': 'iso-8601'}, 'storage_account_type': {'key': 'storageAccountType', 'type': 'str'}, 'source': {'key': 'source', 'type': 'UserArtifactSource'}, - 'content_type': {'key': 'contentType', 'type': 'str'}, + 'manage_actions': {'key': 'manageActions', 'type': 'UserArtifactManage'}, 'enable_health_check': {'key': 'enableHealthCheck', 'type': 'bool'}, } @@ -2484,13 +2483,13 @@ def __init__( exclude_from_latest: Optional[bool] = None, end_of_life_date: Optional[datetime.datetime] = None, storage_account_type: Optional[Union[str, "StorageAccountType"]] = None, - content_type: Optional[str] = None, + manage_actions: Optional["UserArtifactManage"] = None, enable_health_check: Optional[bool] = None, **kwargs ): super(GalleryApplicationVersionPublishingProfile, self).__init__(target_regions=target_regions, replica_count=replica_count, exclude_from_latest=exclude_from_latest, end_of_life_date=end_of_life_date, storage_account_type=storage_account_type, **kwargs) self.source = source - self.content_type = content_type + self.manage_actions = manage_actions self.enable_health_check = enable_health_check @@ -2501,7 +2500,7 @@ class GalleryApplicationVersionUpdate(UpdateResource): :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_07_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -6488,38 +6487,80 @@ def __init__( self.localized_value = localized_value +class UserArtifactManage(msrest.serialization.Model): + """UserArtifactManage. + + All required parameters must be populated in order to send to Azure. + + :param install: Required. Required. The path and arguments to install the gallery application. + This is limited to 4096 characters. + :type install: str + :param remove: Required. Required. The path and arguments to remove the gallery application. + This is limited to 4096 characters. + :type remove: str + :param update: Optional. The path and arguments to update the gallery application. If not + present, then update operation will invoke remove command on the previous version and install + command on the current version of the gallery application. This is limited to 4096 characters. + :type update: str + """ + + _validation = { + 'install': {'required': True}, + 'remove': {'required': True}, + } + + _attribute_map = { + 'install': {'key': 'install', 'type': 'str'}, + 'remove': {'key': 'remove', 'type': 'str'}, + 'update': {'key': 'update', 'type': 'str'}, + } + + def __init__( + self, + *, + install: str, + remove: str, + update: Optional[str] = None, + **kwargs + ): + super(UserArtifactManage, self).__init__(**kwargs) + self.install = install + self.remove = remove + self.update = update + + class UserArtifactSource(msrest.serialization.Model): """The source image from which the Image Version is going to be created. All required parameters must be populated in order to send to Azure. - :param file_name: Required. Required. The fileName of the artifact. - :type file_name: str :param media_link: Required. Required. The mediaLink of the artifact, must be a readable - storage blob. + storage page blob. :type media_link: str + :param default_configuration_link: Optional. The defaultConfigurationLink of the artifact, must + be a readable storage page blob. + :type default_configuration_link: str """ _validation = { - 'file_name': {'required': True}, 'media_link': {'required': True}, } _attribute_map = { - 'file_name': {'key': 'fileName', 'type': 'str'}, 'media_link': {'key': 'mediaLink', 'type': 'str'}, + 'default_configuration_link': {'key': 'defaultConfigurationLink', 'type': 'str'}, } def __init__( self, *, - file_name: str, media_link: str, + default_configuration_link: Optional[str] = None, **kwargs ): super(UserArtifactSource, self).__init__(**kwargs) - self.file_name = file_name self.media_link = media_link + self.default_configuration_link = default_configuration_link class UserAssignedIdentitiesValue(msrest.serialization.Model): diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/__init__.py index c270d3b51252..cc5ac42515d4 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/__init__.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/__init__.py @@ -147,6 +147,7 @@ from ._models_py3 import UpgradePolicy from ._models_py3 import Usage from ._models_py3 import UsageName + from ._models_py3 import UserArtifactManage from ._models_py3 import UserArtifactSource from ._models_py3 import UserAssignedIdentitiesValue from ._models_py3 import VMScaleSetConvertToSinglePlacementGroupInput @@ -365,6 +366,7 @@ from ._models import UpgradePolicy # type: ignore from ._models import Usage # type: ignore from ._models import UsageName # type: ignore + from ._models import UserArtifactManage # type: ignore from ._models import UserArtifactSource # type: ignore from ._models import UserAssignedIdentitiesValue # type: ignore from ._models import VMScaleSetConvertToSinglePlacementGroupInput # type: ignore @@ -629,6 +631,7 @@ 'UpgradePolicy', 'Usage', 'UsageName', + 'UserArtifactManage', 'UserArtifactSource', 'UserAssignedIdentitiesValue', 'VMScaleSetConvertToSinglePlacementGroupInput', diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/_models.py index 9a66882ad198..c91bc832c271 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/_models.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/_models.py @@ -1652,7 +1652,7 @@ class GalleryApplicationVersion(Resource): :type location: str :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_12_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -1776,7 +1776,7 @@ def __init__( class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfileBase): - """The publishing profile of a gallery Image Version. + """The publishing profile of a gallery image version. Variables are only populated by the server, and will be ignored when sending a request. @@ -1803,9 +1803,8 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil :type storage_account_type: str or ~azure.mgmt.compute.v2019_12_01.models.StorageAccountType :param source: Required. The source image from which the Image Version is going to be created. :type source: ~azure.mgmt.compute.v2019_12_01.models.UserArtifactSource - :param content_type: Optional. May be used to help process this file. The type of file - contained in the source, e.g. zip, json, etc. - :type content_type: str + :param manage_actions: + :type manage_actions: ~azure.mgmt.compute.v2019_12_01.models.UserArtifactManage :param enable_health_check: Optional. Whether or not this application reports health. :type enable_health_check: bool """ @@ -1823,7 +1822,7 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil 'end_of_life_date': {'key': 'endOfLifeDate', 'type': 'iso-8601'}, 'storage_account_type': {'key': 'storageAccountType', 'type': 'str'}, 'source': {'key': 'source', 'type': 'UserArtifactSource'}, - 'content_type': {'key': 'contentType', 'type': 'str'}, + 'manage_actions': {'key': 'manageActions', 'type': 'UserArtifactManage'}, 'enable_health_check': {'key': 'enableHealthCheck', 'type': 'bool'}, } @@ -1833,7 +1832,7 @@ def __init__( ): super(GalleryApplicationVersionPublishingProfile, self).__init__(**kwargs) self.source = kwargs['source'] - self.content_type = kwargs.get('content_type', None) + self.manage_actions = kwargs.get('manage_actions', None) self.enable_health_check = kwargs.get('enable_health_check', None) @@ -1850,7 +1849,7 @@ class GalleryApplicationVersionUpdate(UpdateResourceDefinition): :vartype type: str :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_12_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -5395,26 +5394,64 @@ def __init__( self.localized_value = kwargs.get('localized_value', None) +class UserArtifactManage(msrest.serialization.Model): + """UserArtifactManage. + + All required parameters must be populated in order to send to Azure. + + :param install: Required. Required. The path and arguments to install the gallery application. + This is limited to 4096 characters. + :type install: str + :param remove: Required. Required. The path and arguments to remove the gallery application. + This is limited to 4096 characters. + :type remove: str + :param update: Optional. The path and arguments to update the gallery application. If not + present, then update operation will invoke remove command on the previous version and install + command on the current version of the gallery application. This is limited to 4096 characters. + :type update: str + """ + + _validation = { + 'install': {'required': True}, + 'remove': {'required': True}, + } + + _attribute_map = { + 'install': {'key': 'install', 'type': 'str'}, + 'remove': {'key': 'remove', 'type': 'str'}, + 'update': {'key': 'update', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(UserArtifactManage, self).__init__(**kwargs) + self.install = kwargs['install'] + self.remove = kwargs['remove'] + self.update = kwargs.get('update', None) + + class UserArtifactSource(msrest.serialization.Model): """The source image from which the Image Version is going to be created. All required parameters must be populated in order to send to Azure. - :param file_name: Required. Required. The fileName of the artifact. - :type file_name: str :param media_link: Required. Required. The mediaLink of the artifact, must be a readable - storage blob. + storage page blob. :type media_link: str + :param default_configuration_link: Optional. The defaultConfigurationLink of the artifact, must + be a readable storage page blob. + :type default_configuration_link: str """ _validation = { - 'file_name': {'required': True}, 'media_link': {'required': True}, } _attribute_map = { - 'file_name': {'key': 'fileName', 'type': 'str'}, 'media_link': {'key': 'mediaLink', 'type': 'str'}, + 'default_configuration_link': {'key': 'defaultConfigurationLink', 'type': 'str'}, } def __init__( @@ -5422,8 +5459,8 @@ def __init__( **kwargs ): super(UserArtifactSource, self).__init__(**kwargs) - self.file_name = kwargs['file_name'] self.media_link = kwargs['media_link'] + self.default_configuration_link = kwargs.get('default_configuration_link', None) class UserAssignedIdentitiesValue(msrest.serialization.Model): diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/_models_py3.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/_models_py3.py index 96ca84e142b9..74f50d4c0c7a 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/_models_py3.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/models/_models_py3.py @@ -1810,7 +1810,7 @@ class GalleryApplicationVersion(Resource): :type location: str :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_12_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -1947,7 +1947,7 @@ def __init__( class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfileBase): - """The publishing profile of a gallery Image Version. + """The publishing profile of a gallery image version. Variables are only populated by the server, and will be ignored when sending a request. @@ -1974,9 +1974,8 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil :type storage_account_type: str or ~azure.mgmt.compute.v2019_12_01.models.StorageAccountType :param source: Required. The source image from which the Image Version is going to be created. :type source: ~azure.mgmt.compute.v2019_12_01.models.UserArtifactSource - :param content_type: Optional. May be used to help process this file. The type of file - contained in the source, e.g. zip, json, etc. - :type content_type: str + :param manage_actions: + :type manage_actions: ~azure.mgmt.compute.v2019_12_01.models.UserArtifactManage :param enable_health_check: Optional. Whether or not this application reports health. :type enable_health_check: bool """ @@ -1994,7 +1993,7 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil 'end_of_life_date': {'key': 'endOfLifeDate', 'type': 'iso-8601'}, 'storage_account_type': {'key': 'storageAccountType', 'type': 'str'}, 'source': {'key': 'source', 'type': 'UserArtifactSource'}, - 'content_type': {'key': 'contentType', 'type': 'str'}, + 'manage_actions': {'key': 'manageActions', 'type': 'UserArtifactManage'}, 'enable_health_check': {'key': 'enableHealthCheck', 'type': 'bool'}, } @@ -2007,13 +2006,13 @@ def __init__( exclude_from_latest: Optional[bool] = None, end_of_life_date: Optional[datetime.datetime] = None, storage_account_type: Optional[Union[str, "StorageAccountType"]] = None, - content_type: Optional[str] = None, + manage_actions: Optional["UserArtifactManage"] = None, enable_health_check: Optional[bool] = None, **kwargs ): super(GalleryApplicationVersionPublishingProfile, self).__init__(target_regions=target_regions, replica_count=replica_count, exclude_from_latest=exclude_from_latest, end_of_life_date=end_of_life_date, storage_account_type=storage_account_type, **kwargs) self.source = source - self.content_type = content_type + self.manage_actions = manage_actions self.enable_health_check = enable_health_check @@ -2030,7 +2029,7 @@ class GalleryApplicationVersionUpdate(UpdateResourceDefinition): :vartype type: str :param tags: A set of tags. Resource tags. :type tags: dict[str, str] - :param publishing_profile: The publishing profile of a gallery Image Version. + :param publishing_profile: The publishing profile of a gallery image version. :type publishing_profile: ~azure.mgmt.compute.v2019_12_01.models.GalleryApplicationVersionPublishingProfile :ivar provisioning_state: The provisioning state, which only appears in the response. Possible @@ -5923,38 +5922,80 @@ def __init__( self.localized_value = localized_value +class UserArtifactManage(msrest.serialization.Model): + """UserArtifactManage. + + All required parameters must be populated in order to send to Azure. + + :param install: Required. Required. The path and arguments to install the gallery application. + This is limited to 4096 characters. + :type install: str + :param remove: Required. Required. The path and arguments to remove the gallery application. + This is limited to 4096 characters. + :type remove: str + :param update: Optional. The path and arguments to update the gallery application. If not + present, then update operation will invoke remove command on the previous version and install + command on the current version of the gallery application. This is limited to 4096 characters. + :type update: str + """ + + _validation = { + 'install': {'required': True}, + 'remove': {'required': True}, + } + + _attribute_map = { + 'install': {'key': 'install', 'type': 'str'}, + 'remove': {'key': 'remove', 'type': 'str'}, + 'update': {'key': 'update', 'type': 'str'}, + } + + def __init__( + self, + *, + install: str, + remove: str, + update: Optional[str] = None, + **kwargs + ): + super(UserArtifactManage, self).__init__(**kwargs) + self.install = install + self.remove = remove + self.update = update + + class UserArtifactSource(msrest.serialization.Model): """The source image from which the Image Version is going to be created. All required parameters must be populated in order to send to Azure. - :param file_name: Required. Required. The fileName of the artifact. - :type file_name: str :param media_link: Required. Required. The mediaLink of the artifact, must be a readable - storage blob. + storage page blob. :type media_link: str + :param default_configuration_link: Optional. The defaultConfigurationLink of the artifact, must + be a readable storage page blob. + :type default_configuration_link: str """ _validation = { - 'file_name': {'required': True}, 'media_link': {'required': True}, } _attribute_map = { - 'file_name': {'key': 'fileName', 'type': 'str'}, 'media_link': {'key': 'mediaLink', 'type': 'str'}, + 'default_configuration_link': {'key': 'defaultConfigurationLink', 'type': 'str'}, } def __init__( self, *, - file_name: str, media_link: str, + default_configuration_link: Optional[str] = None, **kwargs ): super(UserArtifactSource, self).__init__(**kwargs) - self.file_name = file_name self.media_link = media_link + self.default_configuration_link = default_configuration_link class UserAssignedIdentitiesValue(msrest.serialization.Model): diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models.py index 33aa552bb865..2327472a296c 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models.py @@ -3645,7 +3645,7 @@ class SshPublicKey(msrest.serialization.Model): :param key_data: SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. :code:`
`:code:`
` For creating ssh keys, see `Create SSH keys on Linux and Mac for Linux VMs in Azure - `_. :type key_data: str """ diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models_py3.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models_py3.py index 5c16c5de040a..599404519acb 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models_py3.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models_py3.py @@ -3985,7 +3985,7 @@ class SshPublicKey(msrest.serialization.Model): :param key_data: SSH public key certificate used to authenticate with the VM through ssh. The key needs to be at least 2048-bit and in ssh-rsa format. :code:`
`:code:`
` For creating ssh keys, see `Create SSH keys on Linux and Mac for Linux VMs in Azure - `_. :type key_data: str """ diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models.py index 667bbc7c8f1e..cfc8360230b1 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models.py @@ -2809,16 +2809,16 @@ def __init__( self.id = None -class PrivateEndpointConnection(ProxyOnlyResource): +class PrivateEndpointConnection(msrest.serialization.Model): """The Private Endpoint Connection resource. Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id. + :ivar id: private endpoint connection Id. :vartype id: str - :ivar name: Resource name. + :ivar name: private endpoint connection name. :vartype name: str - :ivar type: Resource type. + :ivar type: private endpoint connection type. :vartype type: str :param private_endpoint: The resource of private end point. :type private_endpoint: ~azure.mgmt.compute.v2020_09_30.models.PrivateEndpoint @@ -2853,6 +2853,9 @@ def __init__( **kwargs ): super(PrivateEndpointConnection, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None self.private_endpoint = kwargs.get('private_endpoint', None) self.private_link_service_connection_state = kwargs.get('private_link_service_connection_state', None) self.provisioning_state = None diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models_py3.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models_py3.py index cebfade08f79..690cb2caaf32 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models_py3.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models_py3.py @@ -3099,16 +3099,16 @@ def __init__( self.id = None -class PrivateEndpointConnection(ProxyOnlyResource): +class PrivateEndpointConnection(msrest.serialization.Model): """The Private Endpoint Connection resource. Variables are only populated by the server, and will be ignored when sending a request. - :ivar id: Resource Id. + :ivar id: private endpoint connection Id. :vartype id: str - :ivar name: Resource name. + :ivar name: private endpoint connection name. :vartype name: str - :ivar type: Resource type. + :ivar type: private endpoint connection type. :vartype type: str :param private_endpoint: The resource of private end point. :type private_endpoint: ~azure.mgmt.compute.v2020_09_30.models.PrivateEndpoint @@ -3146,6 +3146,9 @@ def __init__( **kwargs ): super(PrivateEndpointConnection, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None self.private_endpoint = private_endpoint self.private_link_service_connection_state = private_link_service_connection_state self.provisioning_state = None diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/__init__.py new file mode 100644 index 000000000000..cdc7f7a1709a --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/__init__.py @@ -0,0 +1,16 @@ +# 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 ._compute_management_client import ComputeManagementClient +__all__ = ['ComputeManagementClient'] + +try: + from ._patch import patch_sdk # type: ignore + patch_sdk() +except ImportError: + pass diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_compute_management_client.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_compute_management_client.py new file mode 100644 index 000000000000..c4ca4df89e30 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_compute_management_client.py @@ -0,0 +1,84 @@ +# 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 typing import TYPE_CHECKING + +from azure.mgmt.core import ARMPipelineClient +from msrest import Deserializer, Serializer + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Optional + + from azure.core.credentials import TokenCredential + +from ._configuration import ComputeManagementClientConfiguration +from .operations import CloudServiceRoleInstancesOperations +from .operations import CloudServiceRolesOperations +from .operations import CloudServicesOperations +from .operations import CloudServicesUpdateDomainOperations +from . import models + + +class ComputeManagementClient(object): + """Compute Client. + + :ivar cloud_service_role_instances: CloudServiceRoleInstancesOperations operations + :vartype cloud_service_role_instances: azure.mgmt.compute.v2020_10_01_preview.operations.CloudServiceRoleInstancesOperations + :ivar cloud_service_roles: CloudServiceRolesOperations operations + :vartype cloud_service_roles: azure.mgmt.compute.v2020_10_01_preview.operations.CloudServiceRolesOperations + :ivar cloud_services: CloudServicesOperations operations + :vartype cloud_services: azure.mgmt.compute.v2020_10_01_preview.operations.CloudServicesOperations + :ivar cloud_services_update_domain: CloudServicesUpdateDomainOperations operations + :vartype cloud_services_update_domain: azure.mgmt.compute.v2020_10_01_preview.operations.CloudServicesUpdateDomainOperations + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + :param str base_url: Service URL + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + """ + + def __init__( + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + base_url=None, # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> None + if not base_url: + base_url = 'https://management.azure.com' + self._config = ComputeManagementClientConfiguration(credential, subscription_id, **kwargs) + self._client = ARMPipelineClient(base_url=base_url, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + + self.cloud_service_role_instances = CloudServiceRoleInstancesOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cloud_service_roles = CloudServiceRolesOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cloud_services = CloudServicesOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cloud_services_update_domain = CloudServicesUpdateDomainOperations( + self._client, self._config, self._serialize, self._deserialize) + + def close(self): + # type: () -> None + self._client.close() + + def __enter__(self): + # type: () -> ComputeManagementClient + self._client.__enter__() + return self + + def __exit__(self, *exc_details): + # type: (Any) -> None + self._client.__exit__(*exc_details) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_configuration.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_configuration.py new file mode 100644 index 000000000000..13573d8cd14f --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_configuration.py @@ -0,0 +1,70 @@ +# 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 typing import TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any + + from azure.core.credentials import TokenCredential + +VERSION = "unknown" + +class ComputeManagementClientConfiguration(Configuration): + """Configuration for ComputeManagementClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials.TokenCredential + :param subscription_id: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + """ + + def __init__( + self, + credential, # type: "TokenCredential" + subscription_id, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + super(ComputeManagementClientConfiguration, self).__init__(**kwargs) + + self.credential = credential + self.subscription_id = subscription_id + self.api_version = "2020-10-01-preview" + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'mgmt-compute/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs # type: Any + ): + # type: (...) -> None + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.RetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.RedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.BearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_metadata.json b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_metadata.json new file mode 100644 index 000000000000..82ff740a4340 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/_metadata.json @@ -0,0 +1,64 @@ +{ + "chosen_version": "2020-10-01-preview", + "total_api_version_list": ["2020-10-01-preview"], + "client": { + "name": "ComputeManagementClient", + "filename": "_compute_management_client", + "description": "Compute Client.", + "base_url": "\u0027https://management.azure.com\u0027", + "custom_base_url": null, + "azure_arm": true, + "has_lro_operations": true, + "client_side_validation": true + }, + "global_parameters": { + "sync": { + "credential": { + "signature": "credential, # type: \"TokenCredential\"", + "description": "Credential needed for the client to connect to Azure.", + "docstring_type": "~azure.core.credentials.TokenCredential", + "required": true + }, + "subscription_id": { + "signature": "subscription_id, # type: str", + "description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + "docstring_type": "str", + "required": true + } + }, + "async": { + "credential": { + "signature": "credential, # type: \"AsyncTokenCredential\"", + "description": "Credential needed for the client to connect to Azure.", + "docstring_type": "~azure.core.credentials_async.AsyncTokenCredential", + "required": true + }, + "subscription_id": { + "signature": "subscription_id, # type: str", + "description": "Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.", + "docstring_type": "str", + "required": true + } + }, + "constant": { + }, + "call": "credential, subscription_id" + }, + "config": { + "credential": true, + "credential_scopes": ["https://management.azure.com/.default"], + "credential_default_policy_type": "BearerTokenCredentialPolicy", + "credential_default_policy_type_has_async_version": true, + "credential_key_header_name": null + }, + "operation_groups": { + "cloud_service_role_instances": "CloudServiceRoleInstancesOperations", + "cloud_service_roles": "CloudServiceRolesOperations", + "cloud_services": "CloudServicesOperations", + "cloud_services_update_domain": "CloudServicesUpdateDomainOperations" + }, + "operation_mixins": { + }, + "sync_imports": "None", + "async_imports": "None" +} \ No newline at end of file diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/__init__.py new file mode 100644 index 000000000000..9e9459635989 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/__init__.py @@ -0,0 +1,10 @@ +# 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 ._compute_management_client import ComputeManagementClient +__all__ = ['ComputeManagementClient'] diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/_compute_management_client.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/_compute_management_client.py new file mode 100644 index 000000000000..c83136b7211a --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/_compute_management_client.py @@ -0,0 +1,78 @@ +# 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 typing import Any, Optional, TYPE_CHECKING + +from azure.mgmt.core import AsyncARMPipelineClient +from msrest import Deserializer, Serializer + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + +from ._configuration import ComputeManagementClientConfiguration +from .operations import CloudServiceRoleInstancesOperations +from .operations import CloudServiceRolesOperations +from .operations import CloudServicesOperations +from .operations import CloudServicesUpdateDomainOperations +from .. import models + + +class ComputeManagementClient(object): + """Compute Client. + + :ivar cloud_service_role_instances: CloudServiceRoleInstancesOperations operations + :vartype cloud_service_role_instances: azure.mgmt.compute.v2020_10_01_preview.aio.operations.CloudServiceRoleInstancesOperations + :ivar cloud_service_roles: CloudServiceRolesOperations operations + :vartype cloud_service_roles: azure.mgmt.compute.v2020_10_01_preview.aio.operations.CloudServiceRolesOperations + :ivar cloud_services: CloudServicesOperations operations + :vartype cloud_services: azure.mgmt.compute.v2020_10_01_preview.aio.operations.CloudServicesOperations + :ivar cloud_services_update_domain: CloudServicesUpdateDomainOperations operations + :vartype cloud_services_update_domain: azure.mgmt.compute.v2020_10_01_preview.aio.operations.CloudServicesUpdateDomainOperations + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + :param str base_url: Service URL + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + base_url: Optional[str] = None, + **kwargs: Any + ) -> None: + if not base_url: + base_url = 'https://management.azure.com' + self._config = ComputeManagementClientConfiguration(credential, subscription_id, **kwargs) + self._client = AsyncARMPipelineClient(base_url=base_url, config=self._config, **kwargs) + + client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} + self._serialize = Serializer(client_models) + self._deserialize = Deserializer(client_models) + + self.cloud_service_role_instances = CloudServiceRoleInstancesOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cloud_service_roles = CloudServiceRolesOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cloud_services = CloudServicesOperations( + self._client, self._config, self._serialize, self._deserialize) + self.cloud_services_update_domain = CloudServicesUpdateDomainOperations( + self._client, self._config, self._serialize, self._deserialize) + + async def close(self) -> None: + await self._client.close() + + async def __aenter__(self) -> "ComputeManagementClient": + await self._client.__aenter__() + return self + + async def __aexit__(self, *exc_details) -> None: + await self._client.__aexit__(*exc_details) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/_configuration.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/_configuration.py new file mode 100644 index 000000000000..560f83a3207c --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/_configuration.py @@ -0,0 +1,66 @@ +# 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 typing import Any, TYPE_CHECKING + +from azure.core.configuration import Configuration +from azure.core.pipeline import policies +from azure.mgmt.core.policies import ARMHttpLoggingPolicy + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from azure.core.credentials_async import AsyncTokenCredential + +VERSION = "unknown" + +class ComputeManagementClientConfiguration(Configuration): + """Configuration for ComputeManagementClient. + + Note that all parameters used to create this instance are saved as instance + attributes. + + :param credential: Credential needed for the client to connect to Azure. + :type credential: ~azure.core.credentials_async.AsyncTokenCredential + :param subscription_id: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. + :type subscription_id: str + """ + + def __init__( + self, + credential: "AsyncTokenCredential", + subscription_id: str, + **kwargs: Any + ) -> None: + if credential is None: + raise ValueError("Parameter 'credential' must not be None.") + if subscription_id is None: + raise ValueError("Parameter 'subscription_id' must not be None.") + super(ComputeManagementClientConfiguration, self).__init__(**kwargs) + + self.credential = credential + self.subscription_id = subscription_id + self.api_version = "2020-10-01-preview" + self.credential_scopes = kwargs.pop('credential_scopes', ['https://management.azure.com/.default']) + kwargs.setdefault('sdk_moniker', 'mgmt-compute/{}'.format(VERSION)) + self._configure(**kwargs) + + def _configure( + self, + **kwargs: Any + ) -> None: + self.user_agent_policy = kwargs.get('user_agent_policy') or policies.UserAgentPolicy(**kwargs) + self.headers_policy = kwargs.get('headers_policy') or policies.HeadersPolicy(**kwargs) + self.proxy_policy = kwargs.get('proxy_policy') or policies.ProxyPolicy(**kwargs) + self.logging_policy = kwargs.get('logging_policy') or policies.NetworkTraceLoggingPolicy(**kwargs) + self.http_logging_policy = kwargs.get('http_logging_policy') or ARMHttpLoggingPolicy(**kwargs) + self.retry_policy = kwargs.get('retry_policy') or policies.AsyncRetryPolicy(**kwargs) + self.custom_hook_policy = kwargs.get('custom_hook_policy') or policies.CustomHookPolicy(**kwargs) + self.redirect_policy = kwargs.get('redirect_policy') or policies.AsyncRedirectPolicy(**kwargs) + self.authentication_policy = kwargs.get('authentication_policy') + if self.credential and not self.authentication_policy: + self.authentication_policy = policies.AsyncBearerTokenCredentialPolicy(self.credential, *self.credential_scopes, **kwargs) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/__init__.py new file mode 100644 index 000000000000..0ecb0abd1ee4 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/__init__.py @@ -0,0 +1,19 @@ +# 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 ._cloud_service_role_instances_operations import CloudServiceRoleInstancesOperations +from ._cloud_service_roles_operations import CloudServiceRolesOperations +from ._cloud_services_operations import CloudServicesOperations +from ._cloud_services_update_domain_operations import CloudServicesUpdateDomainOperations + +__all__ = [ + 'CloudServiceRoleInstancesOperations', + 'CloudServiceRolesOperations', + 'CloudServicesOperations', + 'CloudServicesUpdateDomainOperations', +] diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_service_role_instances_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_service_role_instances_operations.py new file mode 100644 index 000000000000..d0b19d7a6081 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_service_role_instances_operations.py @@ -0,0 +1,780 @@ +# 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 typing import Any, AsyncIterable, Callable, Dict, Generic, IO, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class CloudServiceRoleInstancesOperations: + """CloudServiceRoleInstancesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.compute.v2020_10_01_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _delete_initial( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}'} # type: ignore + + async def begin_delete( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """Deletes a role instance from a cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + role_instance_name=role_instance_name, + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}'} # type: ignore + + async def get( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + expand: Optional[str] = "instanceView", + **kwargs + ) -> "_models.RoleInstance": + """Gets a role instance from a cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :param expand: The expand expression to apply to the operation. + :type expand: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RoleInstance, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstance + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoleInstance"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RoleInstance', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}'} # type: ignore + + async def get_instance_view( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> "_models.RoleInstanceView": + """Retrieves information about the run-time state of a role instance in a cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RoleInstanceView, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceView + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoleInstanceView"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get_instance_view.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RoleInstanceView', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_instance_view.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/instanceView'} # type: ignore + + def list( + self, + resource_group_name: str, + cloud_service_name: str, + expand: Optional[str] = "instanceView", + **kwargs + ) -> AsyncIterable["_models.RoleInstanceListResult"]: + """Gets the list of all role instances in a cloud service. Use nextLink property in the response + to get the next page of role instances. Do this till nextLink is null to fetch all the role + instances. + + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :param expand: The expand expression to apply to the operation. + :type expand: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RoleInstanceListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoleInstanceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('RoleInstanceListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances'} # type: ignore + + async def _restart_initial( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._restart_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _restart_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/restart'} # type: ignore + + async def begin_restart( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """The Reboot Role Instance asynchronous operation requests a reboot of a role instance in the + cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._restart_initial( + role_instance_name=role_instance_name, + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_restart.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/restart'} # type: ignore + + async def _reimage_initial( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._reimage_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reimage_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/reimage'} # type: ignore + + async def begin_reimage( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """The Reimage Role Instance asynchronous operation reinstalls the operating system on instances + of web roles or worker roles. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reimage_initial( + role_instance_name=role_instance_name, + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_reimage.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/reimage'} # type: ignore + + async def _rebuild_initial( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._rebuild_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _rebuild_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/rebuild'} # type: ignore + + async def begin_rebuild( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """The Rebuild Role Instance asynchronous operation reinstalls the operating system on instances + of web roles or worker roles and initializes the storage resources that are used by them. If + you do not want to initialize storage resources, you can use Reimage Role Instance. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._rebuild_initial( + role_instance_name=role_instance_name, + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_rebuild.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/rebuild'} # type: ignore + + async def get_remote_desktop_file( + self, + role_instance_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> IO: + """Gets a remote desktop file for a role instance in a cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IO, or the result of cls(response) + :rtype: IO + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[IO] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/x-rdp" + + # Construct URL + url = self.get_remote_desktop_file.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=True, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_remote_desktop_file.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/remoteDesktopFile'} # type: ignore diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_service_roles_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_service_roles_operations.py new file mode 100644 index 000000000000..093ff1c6a87f --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_service_roles_operations.py @@ -0,0 +1,179 @@ +# 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 typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.mgmt.core.exceptions import ARMErrorFormat + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class CloudServiceRolesOperations: + """CloudServiceRolesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.compute.v2020_10_01_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def get( + self, + role_name: str, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> "_models.CloudServiceRole": + """Gets a role from a cloud service. + + :param role_name: Name of the role. + :type role_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CloudServiceRole, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRole + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceRole"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'roleName': self._serialize.url("role_name", role_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CloudServiceRole', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles/{roleName}'} # type: ignore + + def list( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncIterable["_models.CloudServiceRoleListResult"]: + """Gets a list of all roles in a cloud service. Use nextLink property in the response to get the + next page of roles. Do this till nextLink is null to fetch all the roles. + + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CloudServiceRoleListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceRoleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('CloudServiceRoleListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles'} # type: ignore diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_services_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_services_operations.py new file mode 100644 index 000000000000..31e05edf341e --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_services_operations.py @@ -0,0 +1,1371 @@ +# 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 typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class CloudServicesOperations: + """CloudServicesOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.compute.v2020_10_01_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _create_or_update_initial( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.CloudService"] = None, + **kwargs + ) -> "_models.CloudService": + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_or_update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'CloudService') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('CloudService', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + async def begin_create_or_update( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.CloudService"] = None, + **kwargs + ) -> AsyncLROPoller["_models.CloudService"]: + """Create or update a cloud service. Please note some properties can be set only during cloud + service creation. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: The cloud service object. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudService + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either CloudService or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.compute.v2020_10_01_preview.models.CloudService] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._create_or_update_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + async def _update_initial( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.CloudServiceUpdate"] = None, + **kwargs + ) -> "_models.CloudService": + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'CloudServiceUpdate') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + async def begin_update( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.CloudServiceUpdate"] = None, + **kwargs + ) -> AsyncLROPoller["_models.CloudService"]: + """Update a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: The cloud service object. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceUpdate + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either CloudService or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[~azure.mgmt.compute.v2020_10_01_preview.models.CloudService] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._update_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + async def _delete_initial( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + async def begin_delete( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """Deletes a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + async def get( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> "_models.CloudService": + """Display information about a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CloudService, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudService + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + async def get_instance_view( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> "_models.CloudServiceInstanceView": + """Gets the status of a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CloudServiceInstanceView, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceInstanceView + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceInstanceView"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get_instance_view.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CloudServiceInstanceView', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_instance_view.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/instanceView'} # type: ignore + + def list_all( + self, + **kwargs + ) -> AsyncIterable["_models.CloudServiceListResult"]: + """Gets a list of all cloud services in the subscription, regardless of the associated resource + group. Use nextLink property in the response to get the next page of Cloud Services. Do this + till nextLink is null to fetch all the Cloud Services. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CloudServiceListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_all.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('CloudServiceListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Compute/cloudServices'} # type: ignore + + def list( + self, + resource_group_name: str, + **kwargs + ) -> AsyncIterable["_models.CloudServiceListResult"]: + """Gets a list of all cloud services under a resource group. Use nextLink property in the response + to get the next page of Cloud Services. Do this till nextLink is null to fetch all the Cloud + Services. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CloudServiceListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('CloudServiceListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices'} # type: ignore + + async def _start_initial( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._start_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _start_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/start'} # type: ignore + + async def begin_start( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """Starts the cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._start_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_start.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/start'} # type: ignore + + async def _power_off_initial( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._power_off_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _power_off_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/poweroff'} # type: ignore + + async def begin_power_off( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncLROPoller[None]: + """Power off the cloud service. Note that resources are still attached and you are getting charged + for the resources. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._power_off_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_power_off.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/poweroff'} # type: ignore + + async def _restart_initial( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.RoleInstances"] = None, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._restart_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'RoleInstances') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _restart_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/restart'} # type: ignore + + async def begin_restart( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.RoleInstances"] = None, + **kwargs + ) -> AsyncLROPoller[None]: + """Restarts one or more role instances in a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: List of cloud service role instance names. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstances + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._restart_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_restart.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/restart'} # type: ignore + + async def _reimage_initial( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.RoleInstances"] = None, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._reimage_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'RoleInstances') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reimage_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/reimage'} # type: ignore + + async def begin_reimage( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.RoleInstances"] = None, + **kwargs + ) -> AsyncLROPoller[None]: + """Reimage asynchronous operation reinstalls the operating system on instances of web roles or + worker roles. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: List of cloud service role instance names. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstances + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._reimage_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_reimage.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/reimage'} # type: ignore + + async def _rebuild_initial( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.RoleInstances"] = None, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._rebuild_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'RoleInstances') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _rebuild_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/rebuild'} # type: ignore + + async def begin_rebuild( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.RoleInstances"] = None, + **kwargs + ) -> AsyncLROPoller[None]: + """Rebuild Role Instances reinstalls the operating system on instances of web roles or worker + roles and initializes the storage resources that are used by them. If you do not want to + initialize storage resources, you can use Reimage Role Instances. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: List of cloud service role instance names. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstances + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._rebuild_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_rebuild.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/rebuild'} # type: ignore + + async def _delete_instances_initial( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.RoleInstances"] = None, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._delete_instances_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'RoleInstances') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_instances_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/delete'} # type: ignore + + async def begin_delete_instances( + self, + resource_group_name: str, + cloud_service_name: str, + parameters: Optional["_models.RoleInstances"] = None, + **kwargs + ) -> AsyncLROPoller[None]: + """Deletes role instances in a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: List of cloud service role instance names. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstances + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._delete_instances_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete_instances.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/delete'} # type: ignore diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_services_update_domain_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_services_update_domain_operations.py new file mode 100644 index 000000000000..f6316786dea2 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/aio/operations/_cloud_services_update_domain_operations.py @@ -0,0 +1,314 @@ +# 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 typing import Any, AsyncIterable, Callable, Dict, Generic, Optional, TypeVar, Union +import warnings + +from azure.core.async_paging import AsyncItemPaged, AsyncList +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import AsyncHttpResponse, HttpRequest +from azure.core.polling import AsyncLROPoller, AsyncNoPolling, AsyncPollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.async_arm_polling import AsyncARMPolling + +from ... import models as _models + +T = TypeVar('T') +ClsType = Optional[Callable[[PipelineResponse[HttpRequest, AsyncHttpResponse], T, Dict[str, Any]], Any]] + +class CloudServicesUpdateDomainOperations: + """CloudServicesUpdateDomainOperations async operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.compute.v2020_10_01_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer) -> None: + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + async def _walk_update_domain_initial( + self, + resource_group_name: str, + cloud_service_name: str, + update_domain: int, + parameters: Optional["_models.UpdateDomain"] = None, + **kwargs + ) -> None: + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._walk_update_domain_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'updateDomain': self._serialize.url("update_domain", update_domain, 'int'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'UpdateDomain') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _walk_update_domain_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}'} # type: ignore + + async def begin_walk_update_domain( + self, + resource_group_name: str, + cloud_service_name: str, + update_domain: int, + parameters: Optional["_models.UpdateDomain"] = None, + **kwargs + ) -> AsyncLROPoller[None]: + """Updates the role instances in the specified update domain. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param update_domain: Specifies an integer value that identifies the update domain. Update + domains are identified with a zero-based index: the first update domain has an ID of 0, the + second has an ID of 1, and so on. + :type update_domain: int + :param parameters: The update domain object. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.UpdateDomain + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.AsyncPollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of AsyncLROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.AsyncLROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, AsyncPollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = await self._walk_update_domain_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + update_domain=update_domain, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'updateDomain': self._serialize.url("update_domain", update_domain, 'int'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = AsyncARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = AsyncNoPolling() + else: polling_method = polling + if cont_token: + return AsyncLROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return AsyncLROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_walk_update_domain.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}'} # type: ignore + + async def get_update_domain( + self, + resource_group_name: str, + cloud_service_name: str, + update_domain: int, + **kwargs + ) -> "_models.UpdateDomain": + """Gets the specified update domain of a cloud service. Use nextLink property in the response to + get the next page of update domains. Do this till nextLink is null to fetch all the update + domains. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param update_domain: Specifies an integer value that identifies the update domain. Update + domains are identified with a zero-based index: the first update domain has an ID of 0, the + second has an ID of 1, and so on. + :type update_domain: int + :keyword callable cls: A custom type or function that will be passed the direct response + :return: UpdateDomain, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.UpdateDomain + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.UpdateDomain"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get_update_domain.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'updateDomain': self._serialize.url("update_domain", update_domain, 'int'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('UpdateDomain', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_update_domain.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}'} # type: ignore + + def list_update_domains( + self, + resource_group_name: str, + cloud_service_name: str, + **kwargs + ) -> AsyncIterable["_models.UpdateDomainListResult"]: + """Gets a list of all update domains in a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either UpdateDomainListResult or the result of cls(response) + :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.UpdateDomainListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.UpdateDomainListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_update_domains.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + async def extract_data(pipeline_response): + deserialized = self._deserialize('UpdateDomainListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, AsyncList(list_of_elem) + + async def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = await self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return AsyncItemPaged( + get_next, extract_data + ) + list_update_domains.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/updateDomains'} # type: ignore diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/__init__.py new file mode 100644 index 000000000000..bfa6fa5f53c9 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/__init__.py @@ -0,0 +1,137 @@ +# 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. +# -------------------------------------------------------------------------- + +try: + from ._models_py3 import ApiError + from ._models_py3 import ApiErrorBase + from ._models_py3 import CloudService + from ._models_py3 import CloudServiceExtensionProfile + from ._models_py3 import CloudServiceExtensionProperties + from ._models_py3 import CloudServiceInstanceView + from ._models_py3 import CloudServiceListResult + from ._models_py3 import CloudServiceNetworkProfile + from ._models_py3 import CloudServiceOsProfile + from ._models_py3 import CloudServiceProperties + from ._models_py3 import CloudServiceRole + from ._models_py3 import CloudServiceRoleListResult + from ._models_py3 import CloudServiceRoleProfile + from ._models_py3 import CloudServiceRoleProfileProperties + from ._models_py3 import CloudServiceRoleProperties + from ._models_py3 import CloudServiceRoleSku + from ._models_py3 import CloudServiceUpdate + from ._models_py3 import CloudServiceVaultAndSecretReference + from ._models_py3 import CloudServiceVaultCertificate + from ._models_py3 import CloudServiceVaultSecretGroup + from ._models_py3 import Extension + from ._models_py3 import InnerError + from ._models_py3 import InstanceSku + from ._models_py3 import InstanceViewStatusesSummary + from ._models_py3 import LoadBalancerConfiguration + from ._models_py3 import LoadBalancerConfigurationProperties + from ._models_py3 import LoadBalancerFrontendIPConfiguration + from ._models_py3 import LoadBalancerFrontendIPConfigurationProperties + from ._models_py3 import ResourceInstanceViewStatus + from ._models_py3 import RoleInstance + from ._models_py3 import RoleInstanceListResult + from ._models_py3 import RoleInstanceNetworkProfile + from ._models_py3 import RoleInstanceProperties + from ._models_py3 import RoleInstanceView + from ._models_py3 import RoleInstances + from ._models_py3 import StatusCodeCount + from ._models_py3 import SubResource + from ._models_py3 import UpdateDomain + from ._models_py3 import UpdateDomainListResult +except (SyntaxError, ImportError): + from ._models import ApiError # type: ignore + from ._models import ApiErrorBase # type: ignore + from ._models import CloudService # type: ignore + from ._models import CloudServiceExtensionProfile # type: ignore + from ._models import CloudServiceExtensionProperties # type: ignore + from ._models import CloudServiceInstanceView # type: ignore + from ._models import CloudServiceListResult # type: ignore + from ._models import CloudServiceNetworkProfile # type: ignore + from ._models import CloudServiceOsProfile # type: ignore + from ._models import CloudServiceProperties # type: ignore + from ._models import CloudServiceRole # type: ignore + from ._models import CloudServiceRoleListResult # type: ignore + from ._models import CloudServiceRoleProfile # type: ignore + from ._models import CloudServiceRoleProfileProperties # type: ignore + from ._models import CloudServiceRoleProperties # type: ignore + from ._models import CloudServiceRoleSku # type: ignore + from ._models import CloudServiceUpdate # type: ignore + from ._models import CloudServiceVaultAndSecretReference # type: ignore + from ._models import CloudServiceVaultCertificate # type: ignore + from ._models import CloudServiceVaultSecretGroup # type: ignore + from ._models import Extension # type: ignore + from ._models import InnerError # type: ignore + from ._models import InstanceSku # type: ignore + from ._models import InstanceViewStatusesSummary # type: ignore + from ._models import LoadBalancerConfiguration # type: ignore + from ._models import LoadBalancerConfigurationProperties # type: ignore + from ._models import LoadBalancerFrontendIPConfiguration # type: ignore + from ._models import LoadBalancerFrontendIPConfigurationProperties # type: ignore + from ._models import ResourceInstanceViewStatus # type: ignore + from ._models import RoleInstance # type: ignore + from ._models import RoleInstanceListResult # type: ignore + from ._models import RoleInstanceNetworkProfile # type: ignore + from ._models import RoleInstanceProperties # type: ignore + from ._models import RoleInstanceView # type: ignore + from ._models import RoleInstances # type: ignore + from ._models import StatusCodeCount # type: ignore + from ._models import SubResource # type: ignore + from ._models import UpdateDomain # type: ignore + from ._models import UpdateDomainListResult # type: ignore + +from ._compute_management_client_enums import ( + CloudServiceUpgradeMode, + StatusLevelTypes, +) + +__all__ = [ + 'ApiError', + 'ApiErrorBase', + 'CloudService', + 'CloudServiceExtensionProfile', + 'CloudServiceExtensionProperties', + 'CloudServiceInstanceView', + 'CloudServiceListResult', + 'CloudServiceNetworkProfile', + 'CloudServiceOsProfile', + 'CloudServiceProperties', + 'CloudServiceRole', + 'CloudServiceRoleListResult', + 'CloudServiceRoleProfile', + 'CloudServiceRoleProfileProperties', + 'CloudServiceRoleProperties', + 'CloudServiceRoleSku', + 'CloudServiceUpdate', + 'CloudServiceVaultAndSecretReference', + 'CloudServiceVaultCertificate', + 'CloudServiceVaultSecretGroup', + 'Extension', + 'InnerError', + 'InstanceSku', + 'InstanceViewStatusesSummary', + 'LoadBalancerConfiguration', + 'LoadBalancerConfigurationProperties', + 'LoadBalancerFrontendIPConfiguration', + 'LoadBalancerFrontendIPConfigurationProperties', + 'ResourceInstanceViewStatus', + 'RoleInstance', + 'RoleInstanceListResult', + 'RoleInstanceNetworkProfile', + 'RoleInstanceProperties', + 'RoleInstanceView', + 'RoleInstances', + 'StatusCodeCount', + 'SubResource', + 'UpdateDomain', + 'UpdateDomainListResult', + 'CloudServiceUpgradeMode', + 'StatusLevelTypes', +] diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_compute_management_client_enums.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_compute_management_client_enums.py new file mode 100644 index 000000000000..2335366377fd --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_compute_management_client_enums.py @@ -0,0 +1,50 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +from enum import Enum, EnumMeta +from six import with_metaclass + +class _CaseInsensitiveEnumMeta(EnumMeta): + def __getitem__(self, name): + return super().__getitem__(name.upper()) + + def __getattr__(cls, name): + """Return the enum member matching `name` + We use __getattr__ instead of descriptors or inserting into the enum + class' __dict__ in order to support `name` and `value` being both + properties for enum members (which live in the class' __dict__) and + enum members themselves. + """ + try: + return cls._member_map_[name.upper()] + except KeyError: + raise AttributeError(name) + + +class CloudServiceUpgradeMode(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Update mode for the cloud service. Role instances are allocated to update domains when the + service is deployed. Updates can be initiated manually in each update domain or initiated + automatically in all update domains. + Possible Values are :code:`
`:code:`
`\ **Auto**\ :code:`
`:code:`
`\ + **Manual** :code:`
`:code:`
`\ **Simultaneous**\ :code:`
`:code:`
` + If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called + to apply the update. If set to Auto, the update is automatically applied to each update domain + in sequence. + """ + + AUTO = "Auto" + MANUAL = "Manual" + SIMULTANEOUS = "Simultaneous" + +class StatusLevelTypes(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """The level code. + """ + + INFO = "Info" + WARNING = "Warning" + ERROR = "Error" diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_models.py new file mode 100644 index 000000000000..82e445ddebce --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_models.py @@ -0,0 +1,1229 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is regenerated. +# -------------------------------------------------------------------------- + +import msrest.serialization + + +class ApiError(msrest.serialization.Model): + """Api error. + + :param details: The Api error details. + :type details: list[~azure.mgmt.compute.v2020_10_01_preview.models.ApiErrorBase] + :param innererror: The Api inner error. + :type innererror: ~azure.mgmt.compute.v2020_10_01_preview.models.InnerError + :param code: The error code. + :type code: str + :param message: The error message. + :type message: str + :param target: The target of the particular error. + :type target: str + """ + + _attribute_map = { + 'details': {'key': 'details', 'type': '[ApiErrorBase]'}, + 'innererror': {'key': 'innererror', 'type': 'InnerError'}, + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ApiError, self).__init__(**kwargs) + self.details = kwargs.get('details', None) + self.innererror = kwargs.get('innererror', None) + self.code = kwargs.get('code', None) + self.message = kwargs.get('message', None) + self.target = kwargs.get('target', None) + + +class ApiErrorBase(msrest.serialization.Model): + """Api error base. + + :param code: The error code. + :type code: str + :param message: The error message. + :type message: str + :param target: The target of the particular error. + :type target: str + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ApiErrorBase, self).__init__(**kwargs) + self.code = kwargs.get('code', None) + self.message = kwargs.get('message', None) + self.target = kwargs.get('target', None) + + +class CloudService(msrest.serialization.Model): + """Describes the cloud service. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource Id. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :param location: Required. Resource location. + :type location: str + :param tags: A set of tags. Resource tags. + :type tags: dict[str, str] + :param properties: Cloud service properties. + :type properties: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'properties': {'key': 'properties', 'type': 'CloudServiceProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudService, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = kwargs['location'] + self.tags = kwargs.get('tags', None) + self.properties = kwargs.get('properties', None) + + +class CloudServiceExtensionProfile(msrest.serialization.Model): + """Describes a cloud service extension profile. + + :param extensions: List of extensions for the cloud service. + :type extensions: list[~azure.mgmt.compute.v2020_10_01_preview.models.Extension] + """ + + _attribute_map = { + 'extensions': {'key': 'extensions', 'type': '[Extension]'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceExtensionProfile, self).__init__(**kwargs) + self.extensions = kwargs.get('extensions', None) + + +class CloudServiceExtensionProperties(msrest.serialization.Model): + """Extension Properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param publisher: The name of the extension handler publisher. + :type publisher: str + :param type: Specifies the type of the extension. + :type type: str + :param type_handler_version: Specifies the version of the extension. Specifies the version of + the extension. If this element is not specified or an asterisk (*) is used as the value, the + latest version of the extension is used. If the value is specified with a major version number + and an asterisk as the minor version number (X.), the latest minor version of the specified + major version is selected. If a major version number and a minor version number are specified + (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade + is performed on the role instance. + :type type_handler_version: str + :param auto_upgrade_minor_version: Explicitly specify whether platform can automatically + upgrade typeHandlerVersion to higher minor versions when they become available. + :type auto_upgrade_minor_version: bool + :param settings: Public settings for the extension. For JSON extensions, this is the JSON + settings for the extension. For XML Extension (like RDP), this is the XML setting for the + extension. + :type settings: str + :param protected_settings: Protected settings for the extension which are encrypted before sent + to the role instance. + :type protected_settings: str + :param protected_settings_from_key_vault: + :type protected_settings_from_key_vault: + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceVaultAndSecretReference + :param force_update_tag: Tag to force apply the provided public and protected settings. + Changing the tag value allows for re-running the extension without changing any of the public + or protected settings. + If forceUpdateTag is not changed, updates to public or protected settings would still be + applied by the handler. + If neither forceUpdateTag nor any of public or protected settings change, extension would flow + to the role instance with the same sequence-number, and + it is up to handler implementation whether to re-run it or not. + :type force_update_tag: str + :ivar provisioning_state: The provisioning state, which only appears in the response. + :vartype provisioning_state: str + :param roles_applied_to: Optional list of roles to apply this extension. If property is not + specified or '*' is specified, extension is applied to all roles in the cloud service. + :type roles_applied_to: list[str] + """ + + _validation = { + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'publisher': {'key': 'publisher', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'type_handler_version': {'key': 'typeHandlerVersion', 'type': 'str'}, + 'auto_upgrade_minor_version': {'key': 'autoUpgradeMinorVersion', 'type': 'bool'}, + 'settings': {'key': 'settings', 'type': 'str'}, + 'protected_settings': {'key': 'protectedSettings', 'type': 'str'}, + 'protected_settings_from_key_vault': {'key': 'protectedSettingsFromKeyVault', 'type': 'CloudServiceVaultAndSecretReference'}, + 'force_update_tag': {'key': 'forceUpdateTag', 'type': 'str'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'roles_applied_to': {'key': 'rolesAppliedTo', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceExtensionProperties, self).__init__(**kwargs) + self.publisher = kwargs.get('publisher', None) + self.type = kwargs.get('type', None) + self.type_handler_version = kwargs.get('type_handler_version', None) + self.auto_upgrade_minor_version = kwargs.get('auto_upgrade_minor_version', None) + self.settings = kwargs.get('settings', None) + self.protected_settings = kwargs.get('protected_settings', None) + self.protected_settings_from_key_vault = kwargs.get('protected_settings_from_key_vault', None) + self.force_update_tag = kwargs.get('force_update_tag', None) + self.provisioning_state = None + self.roles_applied_to = kwargs.get('roles_applied_to', None) + + +class CloudServiceInstanceView(msrest.serialization.Model): + """InstanceView of CloudService as a whole. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param role_instance: Instance view statuses. + :type role_instance: ~azure.mgmt.compute.v2020_10_01_preview.models.InstanceViewStatusesSummary + :ivar sdk_version: The version of the SDK that was used to generate the package for the cloud + service. + :vartype sdk_version: str + :ivar statuses: + :vartype statuses: + list[~azure.mgmt.compute.v2020_10_01_preview.models.ResourceInstanceViewStatus] + """ + + _validation = { + 'sdk_version': {'readonly': True}, + 'statuses': {'readonly': True}, + } + + _attribute_map = { + 'role_instance': {'key': 'roleInstance', 'type': 'InstanceViewStatusesSummary'}, + 'sdk_version': {'key': 'sdkVersion', 'type': 'str'}, + 'statuses': {'key': 'statuses', 'type': '[ResourceInstanceViewStatus]'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceInstanceView, self).__init__(**kwargs) + self.role_instance = kwargs.get('role_instance', None) + self.sdk_version = None + self.statuses = None + + +class CloudServiceListResult(msrest.serialization.Model): + """CloudServiceListResult. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. + :type value: list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudService] + :param next_link: + :type next_link: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[CloudService]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceListResult, self).__init__(**kwargs) + self.value = kwargs['value'] + self.next_link = kwargs.get('next_link', None) + + +class CloudServiceNetworkProfile(msrest.serialization.Model): + """Network Profile for the cloud service. + + :param load_balancer_configurations: The list of load balancer configurations for the cloud + service. + :type load_balancer_configurations: + list[~azure.mgmt.compute.v2020_10_01_preview.models.LoadBalancerConfiguration] + :param swappable_cloud_service: + :type swappable_cloud_service: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + """ + + _attribute_map = { + 'load_balancer_configurations': {'key': 'loadBalancerConfigurations', 'type': '[LoadBalancerConfiguration]'}, + 'swappable_cloud_service': {'key': 'swappableCloudService', 'type': 'SubResource'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceNetworkProfile, self).__init__(**kwargs) + self.load_balancer_configurations = kwargs.get('load_balancer_configurations', None) + self.swappable_cloud_service = kwargs.get('swappable_cloud_service', None) + + +class CloudServiceOsProfile(msrest.serialization.Model): + """Describes the OS profile for the cloud service. + + :param secrets: Specifies set of certificates that should be installed onto the role instances. + :type secrets: + list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceVaultSecretGroup] + """ + + _attribute_map = { + 'secrets': {'key': 'secrets', 'type': '[CloudServiceVaultSecretGroup]'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceOsProfile, self).__init__(**kwargs) + self.secrets = kwargs.get('secrets', None) + + +class CloudServiceProperties(msrest.serialization.Model): + """Cloud service properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param package_url: Specifies a URL that refers to the location of the service package in the + Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage + account. + This is a write-only property and is not returned in GET calls. + :type package_url: str + :param configuration: Specifies the XML service configuration (.cscfg) for the cloud service. + :type configuration: str + :param configuration_url: Specifies a URL that refers to the location of the service + configuration in the Blob service. The service package URL can be Shared Access Signature + (SAS) URI from any storage account. + This is a write-only property and is not returned in GET calls. + :type configuration_url: str + :param start_cloud_service: (Optional) Indicates whether to start the cloud service immediately + after it is created. The default value is ``true``. + If false, the service model is still deployed, but the code is not run immediately. Instead, + the service is PoweredOff until you call Start, at which time the service will be started. A + deployed service still incurs charges, even if it is poweredoff. + :type start_cloud_service: bool + :param upgrade_mode: Update mode for the cloud service. Role instances are allocated to update + domains when the service is deployed. Updates can be initiated manually in each update domain + or initiated automatically in all update domains. + Possible Values are :code:`
`:code:`
`\ **Auto**\ :code:`
`:code:`
`\ + **Manual** :code:`
`:code:`
`\ **Simultaneous**\ :code:`
`:code:`
` + If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called + to apply the update. If set to Auto, the update is automatically applied to each update domain + in sequence. Possible values include: "Auto", "Manual", "Simultaneous". + :type upgrade_mode: str or + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceUpgradeMode + :param role_profile: Describes the role profile for the cloud service. + :type role_profile: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleProfile + :param os_profile: Describes the OS profile for the cloud service. + :type os_profile: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceOsProfile + :param network_profile: Network Profile for the cloud service. + :type network_profile: + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceNetworkProfile + :param extension_profile: Describes a cloud service extension profile. + :type extension_profile: + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceExtensionProfile + :ivar provisioning_state: The provisioning state, which only appears in the response. + :vartype provisioning_state: str + :ivar unique_id: The unique identifier for the cloud service. + :vartype unique_id: str + """ + + _validation = { + 'provisioning_state': {'readonly': True}, + 'unique_id': {'readonly': True}, + } + + _attribute_map = { + 'package_url': {'key': 'packageUrl', 'type': 'str'}, + 'configuration': {'key': 'configuration', 'type': 'str'}, + 'configuration_url': {'key': 'configurationUrl', 'type': 'str'}, + 'start_cloud_service': {'key': 'startCloudService', 'type': 'bool'}, + 'upgrade_mode': {'key': 'upgradeMode', 'type': 'str'}, + 'role_profile': {'key': 'roleProfile', 'type': 'CloudServiceRoleProfile'}, + 'os_profile': {'key': 'osProfile', 'type': 'CloudServiceOsProfile'}, + 'network_profile': {'key': 'networkProfile', 'type': 'CloudServiceNetworkProfile'}, + 'extension_profile': {'key': 'extensionProfile', 'type': 'CloudServiceExtensionProfile'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'unique_id': {'key': 'uniqueId', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceProperties, self).__init__(**kwargs) + self.package_url = kwargs.get('package_url', None) + self.configuration = kwargs.get('configuration', None) + self.configuration_url = kwargs.get('configuration_url', None) + self.start_cloud_service = kwargs.get('start_cloud_service', None) + self.upgrade_mode = kwargs.get('upgrade_mode', None) + self.role_profile = kwargs.get('role_profile', None) + self.os_profile = kwargs.get('os_profile', None) + self.network_profile = kwargs.get('network_profile', None) + self.extension_profile = kwargs.get('extension_profile', None) + self.provisioning_state = None + self.unique_id = None + + +class CloudServiceRole(msrest.serialization.Model): + """Describes a role of the cloud service. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource id. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :param sku: Describes the cloud service role sku. + :type sku: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleSku + :param properties: + :type properties: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'sku': {'key': 'sku', 'type': 'CloudServiceRoleSku'}, + 'properties': {'key': 'properties', 'type': 'CloudServiceRoleProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceRole, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = None + self.sku = kwargs.get('sku', None) + self.properties = kwargs.get('properties', None) + + +class CloudServiceRoleListResult(msrest.serialization.Model): + """CloudServiceRoleListResult. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. + :type value: list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRole] + :param next_link: + :type next_link: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[CloudServiceRole]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceRoleListResult, self).__init__(**kwargs) + self.value = kwargs['value'] + self.next_link = kwargs.get('next_link', None) + + +class CloudServiceRoleProfile(msrest.serialization.Model): + """Describes the role profile for the cloud service. + + :param roles: List of roles for the cloud service. + :type roles: + list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleProfileProperties] + """ + + _attribute_map = { + 'roles': {'key': 'roles', 'type': '[CloudServiceRoleProfileProperties]'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceRoleProfile, self).__init__(**kwargs) + self.roles = kwargs.get('roles', None) + + +class CloudServiceRoleProfileProperties(msrest.serialization.Model): + """Describes the role properties. + + :param name: Resource name. + :type name: str + :param sku: Describes the cloud service role sku. + :type sku: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleSku + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'sku': {'key': 'sku', 'type': 'CloudServiceRoleSku'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceRoleProfileProperties, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.sku = kwargs.get('sku', None) + + +class CloudServiceRoleProperties(msrest.serialization.Model): + """CloudServiceRoleProperties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar unique_id: Specifies the ID which uniquely identifies a cloud service role. + :vartype unique_id: str + """ + + _validation = { + 'unique_id': {'readonly': True}, + } + + _attribute_map = { + 'unique_id': {'key': 'uniqueId', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceRoleProperties, self).__init__(**kwargs) + self.unique_id = None + + +class CloudServiceRoleSku(msrest.serialization.Model): + """Describes the cloud service role sku. + + :param name: The sku name. NOTE: If the new SKU is not supported on the hardware the cloud + service is currently on, you need to delete and recreate the cloud service or move back to the + old sku. + :type name: str + :param tier: Specifies the tier of the cloud service. Possible Values are :code:`
`:code:`
` **Standard** :code:`
`:code:`
` **Basic**. + :type tier: str + :param capacity: Specifies the number of role instances in the cloud service. + :type capacity: long + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + 'capacity': {'key': 'capacity', 'type': 'long'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceRoleSku, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.tier = kwargs.get('tier', None) + self.capacity = kwargs.get('capacity', None) + + +class CloudServiceUpdate(msrest.serialization.Model): + """CloudServiceUpdate. + + :param tags: A set of tags. Resource tags. + :type tags: dict[str, str] + """ + + _attribute_map = { + 'tags': {'key': 'tags', 'type': '{str}'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceUpdate, self).__init__(**kwargs) + self.tags = kwargs.get('tags', None) + + +class CloudServiceVaultAndSecretReference(msrest.serialization.Model): + """CloudServiceVaultAndSecretReference. + + :param source_vault: + :type source_vault: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + :param secret_url: + :type secret_url: str + """ + + _attribute_map = { + 'source_vault': {'key': 'sourceVault', 'type': 'SubResource'}, + 'secret_url': {'key': 'secretUrl', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceVaultAndSecretReference, self).__init__(**kwargs) + self.source_vault = kwargs.get('source_vault', None) + self.secret_url = kwargs.get('secret_url', None) + + +class CloudServiceVaultCertificate(msrest.serialization.Model): + """Describes a single certificate reference in a Key Vault, and where the certificate should reside on the role instance. + + :param certificate_url: This is the URL of a certificate that has been uploaded to Key Vault as + a secret. + :type certificate_url: str + """ + + _attribute_map = { + 'certificate_url': {'key': 'certificateUrl', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceVaultCertificate, self).__init__(**kwargs) + self.certificate_url = kwargs.get('certificate_url', None) + + +class CloudServiceVaultSecretGroup(msrest.serialization.Model): + """Describes a set of certificates which are all in the same Key Vault. + + :param source_vault: The relative URL of the Key Vault containing all of the certificates in + VaultCertificates. + :type source_vault: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + :param vault_certificates: The list of key vault references in SourceVault which contain + certificates. + :type vault_certificates: + list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceVaultCertificate] + """ + + _attribute_map = { + 'source_vault': {'key': 'sourceVault', 'type': 'SubResource'}, + 'vault_certificates': {'key': 'vaultCertificates', 'type': '[CloudServiceVaultCertificate]'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceVaultSecretGroup, self).__init__(**kwargs) + self.source_vault = kwargs.get('source_vault', None) + self.vault_certificates = kwargs.get('vault_certificates', None) + + +class Extension(msrest.serialization.Model): + """Describes a cloud service Extension. + + :param name: The name of the extension. + :type name: str + :param properties: Extension Properties. + :type properties: + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceExtensionProperties + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'CloudServiceExtensionProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(Extension, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.properties = kwargs.get('properties', None) + + +class InnerError(msrest.serialization.Model): + """Inner error details. + + :param exceptiontype: The exception type. + :type exceptiontype: str + :param errordetail: The internal error message or exception dump. + :type errordetail: str + """ + + _attribute_map = { + 'exceptiontype': {'key': 'exceptiontype', 'type': 'str'}, + 'errordetail': {'key': 'errordetail', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(InnerError, self).__init__(**kwargs) + self.exceptiontype = kwargs.get('exceptiontype', None) + self.errordetail = kwargs.get('errordetail', None) + + +class InstanceSku(msrest.serialization.Model): + """InstanceSku. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The sku name. + :vartype name: str + :ivar tier: The tier of the cloud service role instance. + :vartype tier: str + """ + + _validation = { + 'name': {'readonly': True}, + 'tier': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(InstanceSku, self).__init__(**kwargs) + self.name = None + self.tier = None + + +class InstanceViewStatusesSummary(msrest.serialization.Model): + """Instance view statuses. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar statuses_summary: + :vartype statuses_summary: list[~azure.mgmt.compute.v2020_10_01_preview.models.StatusCodeCount] + """ + + _validation = { + 'statuses_summary': {'readonly': True}, + } + + _attribute_map = { + 'statuses_summary': {'key': 'statusesSummary', 'type': '[StatusCodeCount]'}, + } + + def __init__( + self, + **kwargs + ): + super(InstanceViewStatusesSummary, self).__init__(**kwargs) + self.statuses_summary = None + + +class LoadBalancerConfiguration(msrest.serialization.Model): + """Describes the load balancer configuration. + + :param name: Resource Name. + :type name: str + :param properties: + :type properties: + ~azure.mgmt.compute.v2020_10_01_preview.models.LoadBalancerConfigurationProperties + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'LoadBalancerConfigurationProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(LoadBalancerConfiguration, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.properties = kwargs.get('properties', None) + + +class LoadBalancerConfigurationProperties(msrest.serialization.Model): + """LoadBalancerConfigurationProperties. + + :param frontend_ip_configurations: List of IP. + :type frontend_ip_configurations: + list[~azure.mgmt.compute.v2020_10_01_preview.models.LoadBalancerFrontendIPConfiguration] + """ + + _attribute_map = { + 'frontend_ip_configurations': {'key': 'frontendIPConfigurations', 'type': '[LoadBalancerFrontendIPConfiguration]'}, + } + + def __init__( + self, + **kwargs + ): + super(LoadBalancerConfigurationProperties, self).__init__(**kwargs) + self.frontend_ip_configurations = kwargs.get('frontend_ip_configurations', None) + + +class LoadBalancerFrontendIPConfiguration(msrest.serialization.Model): + """LoadBalancerFrontendIPConfiguration. + + :param name: + :type name: str + :param properties: Describes a cloud service IP Configuration. + :type properties: + ~azure.mgmt.compute.v2020_10_01_preview.models.LoadBalancerFrontendIPConfigurationProperties + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'LoadBalancerFrontendIPConfigurationProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(LoadBalancerFrontendIPConfiguration, self).__init__(**kwargs) + self.name = kwargs.get('name', None) + self.properties = kwargs.get('properties', None) + + +class LoadBalancerFrontendIPConfigurationProperties(msrest.serialization.Model): + """Describes a cloud service IP Configuration. + + :param public_ip_address: + :type public_ip_address: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + :param subnet: + :type subnet: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + :param private_ip_address: The private IP address referenced by the cloud service. + :type private_ip_address: str + """ + + _attribute_map = { + 'public_ip_address': {'key': 'publicIPAddress', 'type': 'SubResource'}, + 'subnet': {'key': 'subnet', 'type': 'SubResource'}, + 'private_ip_address': {'key': 'privateIPAddress', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(LoadBalancerFrontendIPConfigurationProperties, self).__init__(**kwargs) + self.public_ip_address = kwargs.get('public_ip_address', None) + self.subnet = kwargs.get('subnet', None) + self.private_ip_address = kwargs.get('private_ip_address', None) + + +class ResourceInstanceViewStatus(msrest.serialization.Model): + """Instance view status. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar code: The status code. + :vartype code: str + :ivar display_status: The short localizable label for the status. + :vartype display_status: str + :ivar message: The detailed status message, including for alerts and error messages. + :vartype message: str + :ivar time: The time of the status. + :vartype time: ~datetime.datetime + :param level: The level code. Possible values include: "Info", "Warning", "Error". + :type level: str or ~azure.mgmt.compute.v2020_10_01_preview.models.StatusLevelTypes + """ + + _validation = { + 'code': {'readonly': True}, + 'display_status': {'readonly': True}, + 'message': {'readonly': True}, + 'time': {'readonly': True}, + } + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'display_status': {'key': 'displayStatus', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'time': {'key': 'time', 'type': 'iso-8601'}, + 'level': {'key': 'level', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(ResourceInstanceViewStatus, self).__init__(**kwargs) + self.code = None + self.display_status = None + self.message = None + self.time = None + self.level = kwargs.get('level', None) + + +class RoleInstance(msrest.serialization.Model): + """RoleInstance. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource Id. + :vartype id: str + :ivar name: Resource Name. + :vartype name: str + :ivar type: Resource Type. + :vartype type: str + :ivar location: Resource Location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :param sku: + :type sku: ~azure.mgmt.compute.v2020_10_01_preview.models.InstanceSku + :param properties: + :type properties: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'readonly': True}, + 'tags': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'sku': {'key': 'sku', 'type': 'InstanceSku'}, + 'properties': {'key': 'properties', 'type': 'RoleInstanceProperties'}, + } + + def __init__( + self, + **kwargs + ): + super(RoleInstance, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = None + self.tags = None + self.sku = kwargs.get('sku', None) + self.properties = kwargs.get('properties', None) + + +class RoleInstanceListResult(msrest.serialization.Model): + """RoleInstanceListResult. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. + :type value: list[~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstance] + :param next_link: + :type next_link: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[RoleInstance]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(RoleInstanceListResult, self).__init__(**kwargs) + self.value = kwargs['value'] + self.next_link = kwargs.get('next_link', None) + + +class RoleInstanceNetworkProfile(msrest.serialization.Model): + """Describes the network profile for the role instance. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar network_interfaces: Specifies the list of resource Ids for the network interfaces + associated with the role instance. + :vartype network_interfaces: list[~azure.mgmt.compute.v2020_10_01_preview.models.SubResource] + """ + + _validation = { + 'network_interfaces': {'readonly': True}, + } + + _attribute_map = { + 'network_interfaces': {'key': 'networkInterfaces', 'type': '[SubResource]'}, + } + + def __init__( + self, + **kwargs + ): + super(RoleInstanceNetworkProfile, self).__init__(**kwargs) + self.network_interfaces = None + + +class RoleInstanceProperties(msrest.serialization.Model): + """RoleInstanceProperties. + + :param network_profile: Describes the network profile for the role instance. + :type network_profile: + ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceNetworkProfile + :param instance_view: The instance view of the role instance. + :type instance_view: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceView + """ + + _attribute_map = { + 'network_profile': {'key': 'networkProfile', 'type': 'RoleInstanceNetworkProfile'}, + 'instance_view': {'key': 'instanceView', 'type': 'RoleInstanceView'}, + } + + def __init__( + self, + **kwargs + ): + super(RoleInstanceProperties, self).__init__(**kwargs) + self.network_profile = kwargs.get('network_profile', None) + self.instance_view = kwargs.get('instance_view', None) + + +class RoleInstances(msrest.serialization.Model): + """Specifies a list of role instances from the cloud service. + + All required parameters must be populated in order to send to Azure. + + :param role_instances: Required. List of cloud service role instance names. Value of '*' will + signify all role instances of the cloud service. + :type role_instances: list[str] + """ + + _validation = { + 'role_instances': {'required': True}, + } + + _attribute_map = { + 'role_instances': {'key': 'roleInstances', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + super(RoleInstances, self).__init__(**kwargs) + self.role_instances = kwargs['role_instances'] + + +class RoleInstanceView(msrest.serialization.Model): + """The instance view of the role instance. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar platform_update_domain: The Update Domain. + :vartype platform_update_domain: int + :ivar platform_fault_domain: The Fault Domain. + :vartype platform_fault_domain: int + :ivar private_id: Specifies a unique identifier generated internally for the cloud service + associated with this role instance. :code:`
`:code:`
` NOTE: If you are using Azure + Diagnostics extension, this property can be used as 'DeploymentId' for querying details. + :vartype private_id: str + :ivar statuses: + :vartype statuses: + list[~azure.mgmt.compute.v2020_10_01_preview.models.ResourceInstanceViewStatus] + """ + + _validation = { + 'platform_update_domain': {'readonly': True}, + 'platform_fault_domain': {'readonly': True}, + 'private_id': {'readonly': True}, + 'statuses': {'readonly': True}, + } + + _attribute_map = { + 'platform_update_domain': {'key': 'platformUpdateDomain', 'type': 'int'}, + 'platform_fault_domain': {'key': 'platformFaultDomain', 'type': 'int'}, + 'private_id': {'key': 'privateId', 'type': 'str'}, + 'statuses': {'key': 'statuses', 'type': '[ResourceInstanceViewStatus]'}, + } + + def __init__( + self, + **kwargs + ): + super(RoleInstanceView, self).__init__(**kwargs) + self.platform_update_domain = None + self.platform_fault_domain = None + self.private_id = None + self.statuses = None + + +class StatusCodeCount(msrest.serialization.Model): + """StatusCodeCount. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar code: The instance view status code. + :vartype code: str + :ivar count: Number of instances having this status code. + :vartype count: int + """ + + _validation = { + 'code': {'readonly': True}, + 'count': {'readonly': True}, + } + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'count': {'key': 'count', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + super(StatusCodeCount, self).__init__(**kwargs) + self.code = None + self.count = None + + +class SubResource(msrest.serialization.Model): + """SubResource. + + :param id: Resource Id. + :type id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(SubResource, self).__init__(**kwargs) + self.id = kwargs.get('id', None) + + +class UpdateDomain(msrest.serialization.Model): + """Defines an update domain for the cloud service. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource Id. + :vartype id: str + :ivar name: Resource Name. + :vartype name: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(UpdateDomain, self).__init__(**kwargs) + self.id = None + self.name = None + + +class UpdateDomainListResult(msrest.serialization.Model): + """UpdateDomainListResult. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. + :type value: list[~azure.mgmt.compute.v2020_10_01_preview.models.UpdateDomain] + :param next_link: + :type next_link: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[UpdateDomain]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(UpdateDomainListResult, self).__init__(**kwargs) + self.value = kwargs['value'] + self.next_link = kwargs.get('next_link', None) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_models_py3.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_models_py3.py new file mode 100644 index 000000000000..81684f142e8d --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/models/_models_py3.py @@ -0,0 +1,1340 @@ +# 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 typing import Dict, List, Optional, Union + +import msrest.serialization + +from ._compute_management_client_enums import * + + +class ApiError(msrest.serialization.Model): + """Api error. + + :param details: The Api error details. + :type details: list[~azure.mgmt.compute.v2020_10_01_preview.models.ApiErrorBase] + :param innererror: The Api inner error. + :type innererror: ~azure.mgmt.compute.v2020_10_01_preview.models.InnerError + :param code: The error code. + :type code: str + :param message: The error message. + :type message: str + :param target: The target of the particular error. + :type target: str + """ + + _attribute_map = { + 'details': {'key': 'details', 'type': '[ApiErrorBase]'}, + 'innererror': {'key': 'innererror', 'type': 'InnerError'}, + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + } + + def __init__( + self, + *, + details: Optional[List["ApiErrorBase"]] = None, + innererror: Optional["InnerError"] = None, + code: Optional[str] = None, + message: Optional[str] = None, + target: Optional[str] = None, + **kwargs + ): + super(ApiError, self).__init__(**kwargs) + self.details = details + self.innererror = innererror + self.code = code + self.message = message + self.target = target + + +class ApiErrorBase(msrest.serialization.Model): + """Api error base. + + :param code: The error code. + :type code: str + :param message: The error message. + :type message: str + :param target: The target of the particular error. + :type target: str + """ + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'target': {'key': 'target', 'type': 'str'}, + } + + def __init__( + self, + *, + code: Optional[str] = None, + message: Optional[str] = None, + target: Optional[str] = None, + **kwargs + ): + super(ApiErrorBase, self).__init__(**kwargs) + self.code = code + self.message = message + self.target = target + + +class CloudService(msrest.serialization.Model): + """Describes the cloud service. + + Variables are only populated by the server, and will be ignored when sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource Id. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :param location: Required. Resource location. + :type location: str + :param tags: A set of tags. Resource tags. + :type tags: dict[str, str] + :param properties: Cloud service properties. + :type properties: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'required': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'properties': {'key': 'properties', 'type': 'CloudServiceProperties'}, + } + + def __init__( + self, + *, + location: str, + tags: Optional[Dict[str, str]] = None, + properties: Optional["CloudServiceProperties"] = None, + **kwargs + ): + super(CloudService, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = location + self.tags = tags + self.properties = properties + + +class CloudServiceExtensionProfile(msrest.serialization.Model): + """Describes a cloud service extension profile. + + :param extensions: List of extensions for the cloud service. + :type extensions: list[~azure.mgmt.compute.v2020_10_01_preview.models.Extension] + """ + + _attribute_map = { + 'extensions': {'key': 'extensions', 'type': '[Extension]'}, + } + + def __init__( + self, + *, + extensions: Optional[List["Extension"]] = None, + **kwargs + ): + super(CloudServiceExtensionProfile, self).__init__(**kwargs) + self.extensions = extensions + + +class CloudServiceExtensionProperties(msrest.serialization.Model): + """Extension Properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param publisher: The name of the extension handler publisher. + :type publisher: str + :param type: Specifies the type of the extension. + :type type: str + :param type_handler_version: Specifies the version of the extension. Specifies the version of + the extension. If this element is not specified or an asterisk (*) is used as the value, the + latest version of the extension is used. If the value is specified with a major version number + and an asterisk as the minor version number (X.), the latest minor version of the specified + major version is selected. If a major version number and a minor version number are specified + (X.Y), the specific extension version is selected. If a version is specified, an auto-upgrade + is performed on the role instance. + :type type_handler_version: str + :param auto_upgrade_minor_version: Explicitly specify whether platform can automatically + upgrade typeHandlerVersion to higher minor versions when they become available. + :type auto_upgrade_minor_version: bool + :param settings: Public settings for the extension. For JSON extensions, this is the JSON + settings for the extension. For XML Extension (like RDP), this is the XML setting for the + extension. + :type settings: str + :param protected_settings: Protected settings for the extension which are encrypted before sent + to the role instance. + :type protected_settings: str + :param protected_settings_from_key_vault: + :type protected_settings_from_key_vault: + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceVaultAndSecretReference + :param force_update_tag: Tag to force apply the provided public and protected settings. + Changing the tag value allows for re-running the extension without changing any of the public + or protected settings. + If forceUpdateTag is not changed, updates to public or protected settings would still be + applied by the handler. + If neither forceUpdateTag nor any of public or protected settings change, extension would flow + to the role instance with the same sequence-number, and + it is up to handler implementation whether to re-run it or not. + :type force_update_tag: str + :ivar provisioning_state: The provisioning state, which only appears in the response. + :vartype provisioning_state: str + :param roles_applied_to: Optional list of roles to apply this extension. If property is not + specified or '*' is specified, extension is applied to all roles in the cloud service. + :type roles_applied_to: list[str] + """ + + _validation = { + 'provisioning_state': {'readonly': True}, + } + + _attribute_map = { + 'publisher': {'key': 'publisher', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'type_handler_version': {'key': 'typeHandlerVersion', 'type': 'str'}, + 'auto_upgrade_minor_version': {'key': 'autoUpgradeMinorVersion', 'type': 'bool'}, + 'settings': {'key': 'settings', 'type': 'str'}, + 'protected_settings': {'key': 'protectedSettings', 'type': 'str'}, + 'protected_settings_from_key_vault': {'key': 'protectedSettingsFromKeyVault', 'type': 'CloudServiceVaultAndSecretReference'}, + 'force_update_tag': {'key': 'forceUpdateTag', 'type': 'str'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'roles_applied_to': {'key': 'rolesAppliedTo', 'type': '[str]'}, + } + + def __init__( + self, + *, + publisher: Optional[str] = None, + type: Optional[str] = None, + type_handler_version: Optional[str] = None, + auto_upgrade_minor_version: Optional[bool] = None, + settings: Optional[str] = None, + protected_settings: Optional[str] = None, + protected_settings_from_key_vault: Optional["CloudServiceVaultAndSecretReference"] = None, + force_update_tag: Optional[str] = None, + roles_applied_to: Optional[List[str]] = None, + **kwargs + ): + super(CloudServiceExtensionProperties, self).__init__(**kwargs) + self.publisher = publisher + self.type = type + self.type_handler_version = type_handler_version + self.auto_upgrade_minor_version = auto_upgrade_minor_version + self.settings = settings + self.protected_settings = protected_settings + self.protected_settings_from_key_vault = protected_settings_from_key_vault + self.force_update_tag = force_update_tag + self.provisioning_state = None + self.roles_applied_to = roles_applied_to + + +class CloudServiceInstanceView(msrest.serialization.Model): + """InstanceView of CloudService as a whole. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param role_instance: Instance view statuses. + :type role_instance: ~azure.mgmt.compute.v2020_10_01_preview.models.InstanceViewStatusesSummary + :ivar sdk_version: The version of the SDK that was used to generate the package for the cloud + service. + :vartype sdk_version: str + :ivar statuses: + :vartype statuses: + list[~azure.mgmt.compute.v2020_10_01_preview.models.ResourceInstanceViewStatus] + """ + + _validation = { + 'sdk_version': {'readonly': True}, + 'statuses': {'readonly': True}, + } + + _attribute_map = { + 'role_instance': {'key': 'roleInstance', 'type': 'InstanceViewStatusesSummary'}, + 'sdk_version': {'key': 'sdkVersion', 'type': 'str'}, + 'statuses': {'key': 'statuses', 'type': '[ResourceInstanceViewStatus]'}, + } + + def __init__( + self, + *, + role_instance: Optional["InstanceViewStatusesSummary"] = None, + **kwargs + ): + super(CloudServiceInstanceView, self).__init__(**kwargs) + self.role_instance = role_instance + self.sdk_version = None + self.statuses = None + + +class CloudServiceListResult(msrest.serialization.Model): + """CloudServiceListResult. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. + :type value: list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudService] + :param next_link: + :type next_link: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[CloudService]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: List["CloudService"], + next_link: Optional[str] = None, + **kwargs + ): + super(CloudServiceListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class CloudServiceNetworkProfile(msrest.serialization.Model): + """Network Profile for the cloud service. + + :param load_balancer_configurations: The list of load balancer configurations for the cloud + service. + :type load_balancer_configurations: + list[~azure.mgmt.compute.v2020_10_01_preview.models.LoadBalancerConfiguration] + :param swappable_cloud_service: + :type swappable_cloud_service: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + """ + + _attribute_map = { + 'load_balancer_configurations': {'key': 'loadBalancerConfigurations', 'type': '[LoadBalancerConfiguration]'}, + 'swappable_cloud_service': {'key': 'swappableCloudService', 'type': 'SubResource'}, + } + + def __init__( + self, + *, + load_balancer_configurations: Optional[List["LoadBalancerConfiguration"]] = None, + swappable_cloud_service: Optional["SubResource"] = None, + **kwargs + ): + super(CloudServiceNetworkProfile, self).__init__(**kwargs) + self.load_balancer_configurations = load_balancer_configurations + self.swappable_cloud_service = swappable_cloud_service + + +class CloudServiceOsProfile(msrest.serialization.Model): + """Describes the OS profile for the cloud service. + + :param secrets: Specifies set of certificates that should be installed onto the role instances. + :type secrets: + list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceVaultSecretGroup] + """ + + _attribute_map = { + 'secrets': {'key': 'secrets', 'type': '[CloudServiceVaultSecretGroup]'}, + } + + def __init__( + self, + *, + secrets: Optional[List["CloudServiceVaultSecretGroup"]] = None, + **kwargs + ): + super(CloudServiceOsProfile, self).__init__(**kwargs) + self.secrets = secrets + + +class CloudServiceProperties(msrest.serialization.Model): + """Cloud service properties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param package_url: Specifies a URL that refers to the location of the service package in the + Blob service. The service package URL can be Shared Access Signature (SAS) URI from any storage + account. + This is a write-only property and is not returned in GET calls. + :type package_url: str + :param configuration: Specifies the XML service configuration (.cscfg) for the cloud service. + :type configuration: str + :param configuration_url: Specifies a URL that refers to the location of the service + configuration in the Blob service. The service package URL can be Shared Access Signature + (SAS) URI from any storage account. + This is a write-only property and is not returned in GET calls. + :type configuration_url: str + :param start_cloud_service: (Optional) Indicates whether to start the cloud service immediately + after it is created. The default value is ``true``. + If false, the service model is still deployed, but the code is not run immediately. Instead, + the service is PoweredOff until you call Start, at which time the service will be started. A + deployed service still incurs charges, even if it is poweredoff. + :type start_cloud_service: bool + :param upgrade_mode: Update mode for the cloud service. Role instances are allocated to update + domains when the service is deployed. Updates can be initiated manually in each update domain + or initiated automatically in all update domains. + Possible Values are :code:`
`:code:`
`\ **Auto**\ :code:`
`:code:`
`\ + **Manual** :code:`
`:code:`
`\ **Simultaneous**\ :code:`
`:code:`
` + If not specified, the default value is Auto. If set to Manual, PUT UpdateDomain must be called + to apply the update. If set to Auto, the update is automatically applied to each update domain + in sequence. Possible values include: "Auto", "Manual", "Simultaneous". + :type upgrade_mode: str or + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceUpgradeMode + :param role_profile: Describes the role profile for the cloud service. + :type role_profile: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleProfile + :param os_profile: Describes the OS profile for the cloud service. + :type os_profile: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceOsProfile + :param network_profile: Network Profile for the cloud service. + :type network_profile: + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceNetworkProfile + :param extension_profile: Describes a cloud service extension profile. + :type extension_profile: + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceExtensionProfile + :ivar provisioning_state: The provisioning state, which only appears in the response. + :vartype provisioning_state: str + :ivar unique_id: The unique identifier for the cloud service. + :vartype unique_id: str + """ + + _validation = { + 'provisioning_state': {'readonly': True}, + 'unique_id': {'readonly': True}, + } + + _attribute_map = { + 'package_url': {'key': 'packageUrl', 'type': 'str'}, + 'configuration': {'key': 'configuration', 'type': 'str'}, + 'configuration_url': {'key': 'configurationUrl', 'type': 'str'}, + 'start_cloud_service': {'key': 'startCloudService', 'type': 'bool'}, + 'upgrade_mode': {'key': 'upgradeMode', 'type': 'str'}, + 'role_profile': {'key': 'roleProfile', 'type': 'CloudServiceRoleProfile'}, + 'os_profile': {'key': 'osProfile', 'type': 'CloudServiceOsProfile'}, + 'network_profile': {'key': 'networkProfile', 'type': 'CloudServiceNetworkProfile'}, + 'extension_profile': {'key': 'extensionProfile', 'type': 'CloudServiceExtensionProfile'}, + 'provisioning_state': {'key': 'provisioningState', 'type': 'str'}, + 'unique_id': {'key': 'uniqueId', 'type': 'str'}, + } + + def __init__( + self, + *, + package_url: Optional[str] = None, + configuration: Optional[str] = None, + configuration_url: Optional[str] = None, + start_cloud_service: Optional[bool] = None, + upgrade_mode: Optional[Union[str, "CloudServiceUpgradeMode"]] = None, + role_profile: Optional["CloudServiceRoleProfile"] = None, + os_profile: Optional["CloudServiceOsProfile"] = None, + network_profile: Optional["CloudServiceNetworkProfile"] = None, + extension_profile: Optional["CloudServiceExtensionProfile"] = None, + **kwargs + ): + super(CloudServiceProperties, self).__init__(**kwargs) + self.package_url = package_url + self.configuration = configuration + self.configuration_url = configuration_url + self.start_cloud_service = start_cloud_service + self.upgrade_mode = upgrade_mode + self.role_profile = role_profile + self.os_profile = os_profile + self.network_profile = network_profile + self.extension_profile = extension_profile + self.provisioning_state = None + self.unique_id = None + + +class CloudServiceRole(msrest.serialization.Model): + """Describes a role of the cloud service. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource id. + :vartype id: str + :ivar name: Resource name. + :vartype name: str + :ivar type: Resource type. + :vartype type: str + :ivar location: Resource location. + :vartype location: str + :param sku: Describes the cloud service role sku. + :type sku: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleSku + :param properties: + :type properties: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'sku': {'key': 'sku', 'type': 'CloudServiceRoleSku'}, + 'properties': {'key': 'properties', 'type': 'CloudServiceRoleProperties'}, + } + + def __init__( + self, + *, + sku: Optional["CloudServiceRoleSku"] = None, + properties: Optional["CloudServiceRoleProperties"] = None, + **kwargs + ): + super(CloudServiceRole, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = None + self.sku = sku + self.properties = properties + + +class CloudServiceRoleListResult(msrest.serialization.Model): + """CloudServiceRoleListResult. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. + :type value: list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRole] + :param next_link: + :type next_link: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[CloudServiceRole]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: List["CloudServiceRole"], + next_link: Optional[str] = None, + **kwargs + ): + super(CloudServiceRoleListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class CloudServiceRoleProfile(msrest.serialization.Model): + """Describes the role profile for the cloud service. + + :param roles: List of roles for the cloud service. + :type roles: + list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleProfileProperties] + """ + + _attribute_map = { + 'roles': {'key': 'roles', 'type': '[CloudServiceRoleProfileProperties]'}, + } + + def __init__( + self, + *, + roles: Optional[List["CloudServiceRoleProfileProperties"]] = None, + **kwargs + ): + super(CloudServiceRoleProfile, self).__init__(**kwargs) + self.roles = roles + + +class CloudServiceRoleProfileProperties(msrest.serialization.Model): + """Describes the role properties. + + :param name: Resource name. + :type name: str + :param sku: Describes the cloud service role sku. + :type sku: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleSku + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'sku': {'key': 'sku', 'type': 'CloudServiceRoleSku'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + sku: Optional["CloudServiceRoleSku"] = None, + **kwargs + ): + super(CloudServiceRoleProfileProperties, self).__init__(**kwargs) + self.name = name + self.sku = sku + + +class CloudServiceRoleProperties(msrest.serialization.Model): + """CloudServiceRoleProperties. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar unique_id: Specifies the ID which uniquely identifies a cloud service role. + :vartype unique_id: str + """ + + _validation = { + 'unique_id': {'readonly': True}, + } + + _attribute_map = { + 'unique_id': {'key': 'uniqueId', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CloudServiceRoleProperties, self).__init__(**kwargs) + self.unique_id = None + + +class CloudServiceRoleSku(msrest.serialization.Model): + """Describes the cloud service role sku. + + :param name: The sku name. NOTE: If the new SKU is not supported on the hardware the cloud + service is currently on, you need to delete and recreate the cloud service or move back to the + old sku. + :type name: str + :param tier: Specifies the tier of the cloud service. Possible Values are :code:`
`:code:`
` **Standard** :code:`
`:code:`
` **Basic**. + :type tier: str + :param capacity: Specifies the number of role instances in the cloud service. + :type capacity: long + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + 'capacity': {'key': 'capacity', 'type': 'long'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + tier: Optional[str] = None, + capacity: Optional[int] = None, + **kwargs + ): + super(CloudServiceRoleSku, self).__init__(**kwargs) + self.name = name + self.tier = tier + self.capacity = capacity + + +class CloudServiceUpdate(msrest.serialization.Model): + """CloudServiceUpdate. + + :param tags: A set of tags. Resource tags. + :type tags: dict[str, str] + """ + + _attribute_map = { + 'tags': {'key': 'tags', 'type': '{str}'}, + } + + def __init__( + self, + *, + tags: Optional[Dict[str, str]] = None, + **kwargs + ): + super(CloudServiceUpdate, self).__init__(**kwargs) + self.tags = tags + + +class CloudServiceVaultAndSecretReference(msrest.serialization.Model): + """CloudServiceVaultAndSecretReference. + + :param source_vault: + :type source_vault: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + :param secret_url: + :type secret_url: str + """ + + _attribute_map = { + 'source_vault': {'key': 'sourceVault', 'type': 'SubResource'}, + 'secret_url': {'key': 'secretUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + source_vault: Optional["SubResource"] = None, + secret_url: Optional[str] = None, + **kwargs + ): + super(CloudServiceVaultAndSecretReference, self).__init__(**kwargs) + self.source_vault = source_vault + self.secret_url = secret_url + + +class CloudServiceVaultCertificate(msrest.serialization.Model): + """Describes a single certificate reference in a Key Vault, and where the certificate should reside on the role instance. + + :param certificate_url: This is the URL of a certificate that has been uploaded to Key Vault as + a secret. + :type certificate_url: str + """ + + _attribute_map = { + 'certificate_url': {'key': 'certificateUrl', 'type': 'str'}, + } + + def __init__( + self, + *, + certificate_url: Optional[str] = None, + **kwargs + ): + super(CloudServiceVaultCertificate, self).__init__(**kwargs) + self.certificate_url = certificate_url + + +class CloudServiceVaultSecretGroup(msrest.serialization.Model): + """Describes a set of certificates which are all in the same Key Vault. + + :param source_vault: The relative URL of the Key Vault containing all of the certificates in + VaultCertificates. + :type source_vault: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + :param vault_certificates: The list of key vault references in SourceVault which contain + certificates. + :type vault_certificates: + list[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceVaultCertificate] + """ + + _attribute_map = { + 'source_vault': {'key': 'sourceVault', 'type': 'SubResource'}, + 'vault_certificates': {'key': 'vaultCertificates', 'type': '[CloudServiceVaultCertificate]'}, + } + + def __init__( + self, + *, + source_vault: Optional["SubResource"] = None, + vault_certificates: Optional[List["CloudServiceVaultCertificate"]] = None, + **kwargs + ): + super(CloudServiceVaultSecretGroup, self).__init__(**kwargs) + self.source_vault = source_vault + self.vault_certificates = vault_certificates + + +class Extension(msrest.serialization.Model): + """Describes a cloud service Extension. + + :param name: The name of the extension. + :type name: str + :param properties: Extension Properties. + :type properties: + ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceExtensionProperties + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'CloudServiceExtensionProperties'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + properties: Optional["CloudServiceExtensionProperties"] = None, + **kwargs + ): + super(Extension, self).__init__(**kwargs) + self.name = name + self.properties = properties + + +class InnerError(msrest.serialization.Model): + """Inner error details. + + :param exceptiontype: The exception type. + :type exceptiontype: str + :param errordetail: The internal error message or exception dump. + :type errordetail: str + """ + + _attribute_map = { + 'exceptiontype': {'key': 'exceptiontype', 'type': 'str'}, + 'errordetail': {'key': 'errordetail', 'type': 'str'}, + } + + def __init__( + self, + *, + exceptiontype: Optional[str] = None, + errordetail: Optional[str] = None, + **kwargs + ): + super(InnerError, self).__init__(**kwargs) + self.exceptiontype = exceptiontype + self.errordetail = errordetail + + +class InstanceSku(msrest.serialization.Model): + """InstanceSku. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar name: The sku name. + :vartype name: str + :ivar tier: The tier of the cloud service role instance. + :vartype tier: str + """ + + _validation = { + 'name': {'readonly': True}, + 'tier': {'readonly': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'tier': {'key': 'tier', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(InstanceSku, self).__init__(**kwargs) + self.name = None + self.tier = None + + +class InstanceViewStatusesSummary(msrest.serialization.Model): + """Instance view statuses. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar statuses_summary: + :vartype statuses_summary: list[~azure.mgmt.compute.v2020_10_01_preview.models.StatusCodeCount] + """ + + _validation = { + 'statuses_summary': {'readonly': True}, + } + + _attribute_map = { + 'statuses_summary': {'key': 'statusesSummary', 'type': '[StatusCodeCount]'}, + } + + def __init__( + self, + **kwargs + ): + super(InstanceViewStatusesSummary, self).__init__(**kwargs) + self.statuses_summary = None + + +class LoadBalancerConfiguration(msrest.serialization.Model): + """Describes the load balancer configuration. + + :param name: Resource Name. + :type name: str + :param properties: + :type properties: + ~azure.mgmt.compute.v2020_10_01_preview.models.LoadBalancerConfigurationProperties + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'LoadBalancerConfigurationProperties'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + properties: Optional["LoadBalancerConfigurationProperties"] = None, + **kwargs + ): + super(LoadBalancerConfiguration, self).__init__(**kwargs) + self.name = name + self.properties = properties + + +class LoadBalancerConfigurationProperties(msrest.serialization.Model): + """LoadBalancerConfigurationProperties. + + :param frontend_ip_configurations: List of IP. + :type frontend_ip_configurations: + list[~azure.mgmt.compute.v2020_10_01_preview.models.LoadBalancerFrontendIPConfiguration] + """ + + _attribute_map = { + 'frontend_ip_configurations': {'key': 'frontendIPConfigurations', 'type': '[LoadBalancerFrontendIPConfiguration]'}, + } + + def __init__( + self, + *, + frontend_ip_configurations: Optional[List["LoadBalancerFrontendIPConfiguration"]] = None, + **kwargs + ): + super(LoadBalancerConfigurationProperties, self).__init__(**kwargs) + self.frontend_ip_configurations = frontend_ip_configurations + + +class LoadBalancerFrontendIPConfiguration(msrest.serialization.Model): + """LoadBalancerFrontendIPConfiguration. + + :param name: + :type name: str + :param properties: Describes a cloud service IP Configuration. + :type properties: + ~azure.mgmt.compute.v2020_10_01_preview.models.LoadBalancerFrontendIPConfigurationProperties + """ + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'properties': {'key': 'properties', 'type': 'LoadBalancerFrontendIPConfigurationProperties'}, + } + + def __init__( + self, + *, + name: Optional[str] = None, + properties: Optional["LoadBalancerFrontendIPConfigurationProperties"] = None, + **kwargs + ): + super(LoadBalancerFrontendIPConfiguration, self).__init__(**kwargs) + self.name = name + self.properties = properties + + +class LoadBalancerFrontendIPConfigurationProperties(msrest.serialization.Model): + """Describes a cloud service IP Configuration. + + :param public_ip_address: + :type public_ip_address: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + :param subnet: + :type subnet: ~azure.mgmt.compute.v2020_10_01_preview.models.SubResource + :param private_ip_address: The private IP address referenced by the cloud service. + :type private_ip_address: str + """ + + _attribute_map = { + 'public_ip_address': {'key': 'publicIPAddress', 'type': 'SubResource'}, + 'subnet': {'key': 'subnet', 'type': 'SubResource'}, + 'private_ip_address': {'key': 'privateIPAddress', 'type': 'str'}, + } + + def __init__( + self, + *, + public_ip_address: Optional["SubResource"] = None, + subnet: Optional["SubResource"] = None, + private_ip_address: Optional[str] = None, + **kwargs + ): + super(LoadBalancerFrontendIPConfigurationProperties, self).__init__(**kwargs) + self.public_ip_address = public_ip_address + self.subnet = subnet + self.private_ip_address = private_ip_address + + +class ResourceInstanceViewStatus(msrest.serialization.Model): + """Instance view status. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar code: The status code. + :vartype code: str + :ivar display_status: The short localizable label for the status. + :vartype display_status: str + :ivar message: The detailed status message, including for alerts and error messages. + :vartype message: str + :ivar time: The time of the status. + :vartype time: ~datetime.datetime + :param level: The level code. Possible values include: "Info", "Warning", "Error". + :type level: str or ~azure.mgmt.compute.v2020_10_01_preview.models.StatusLevelTypes + """ + + _validation = { + 'code': {'readonly': True}, + 'display_status': {'readonly': True}, + 'message': {'readonly': True}, + 'time': {'readonly': True}, + } + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'display_status': {'key': 'displayStatus', 'type': 'str'}, + 'message': {'key': 'message', 'type': 'str'}, + 'time': {'key': 'time', 'type': 'iso-8601'}, + 'level': {'key': 'level', 'type': 'str'}, + } + + def __init__( + self, + *, + level: Optional[Union[str, "StatusLevelTypes"]] = None, + **kwargs + ): + super(ResourceInstanceViewStatus, self).__init__(**kwargs) + self.code = None + self.display_status = None + self.message = None + self.time = None + self.level = level + + +class RoleInstance(msrest.serialization.Model): + """RoleInstance. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource Id. + :vartype id: str + :ivar name: Resource Name. + :vartype name: str + :ivar type: Resource Type. + :vartype type: str + :ivar location: Resource Location. + :vartype location: str + :ivar tags: A set of tags. Resource tags. + :vartype tags: dict[str, str] + :param sku: + :type sku: ~azure.mgmt.compute.v2020_10_01_preview.models.InstanceSku + :param properties: + :type properties: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceProperties + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'readonly': True}, + 'tags': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'sku': {'key': 'sku', 'type': 'InstanceSku'}, + 'properties': {'key': 'properties', 'type': 'RoleInstanceProperties'}, + } + + def __init__( + self, + *, + sku: Optional["InstanceSku"] = None, + properties: Optional["RoleInstanceProperties"] = None, + **kwargs + ): + super(RoleInstance, self).__init__(**kwargs) + self.id = None + self.name = None + self.type = None + self.location = None + self.tags = None + self.sku = sku + self.properties = properties + + +class RoleInstanceListResult(msrest.serialization.Model): + """RoleInstanceListResult. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. + :type value: list[~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstance] + :param next_link: + :type next_link: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[RoleInstance]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: List["RoleInstance"], + next_link: Optional[str] = None, + **kwargs + ): + super(RoleInstanceListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link + + +class RoleInstanceNetworkProfile(msrest.serialization.Model): + """Describes the network profile for the role instance. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar network_interfaces: Specifies the list of resource Ids for the network interfaces + associated with the role instance. + :vartype network_interfaces: list[~azure.mgmt.compute.v2020_10_01_preview.models.SubResource] + """ + + _validation = { + 'network_interfaces': {'readonly': True}, + } + + _attribute_map = { + 'network_interfaces': {'key': 'networkInterfaces', 'type': '[SubResource]'}, + } + + def __init__( + self, + **kwargs + ): + super(RoleInstanceNetworkProfile, self).__init__(**kwargs) + self.network_interfaces = None + + +class RoleInstanceProperties(msrest.serialization.Model): + """RoleInstanceProperties. + + :param network_profile: Describes the network profile for the role instance. + :type network_profile: + ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceNetworkProfile + :param instance_view: The instance view of the role instance. + :type instance_view: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceView + """ + + _attribute_map = { + 'network_profile': {'key': 'networkProfile', 'type': 'RoleInstanceNetworkProfile'}, + 'instance_view': {'key': 'instanceView', 'type': 'RoleInstanceView'}, + } + + def __init__( + self, + *, + network_profile: Optional["RoleInstanceNetworkProfile"] = None, + instance_view: Optional["RoleInstanceView"] = None, + **kwargs + ): + super(RoleInstanceProperties, self).__init__(**kwargs) + self.network_profile = network_profile + self.instance_view = instance_view + + +class RoleInstances(msrest.serialization.Model): + """Specifies a list of role instances from the cloud service. + + All required parameters must be populated in order to send to Azure. + + :param role_instances: Required. List of cloud service role instance names. Value of '*' will + signify all role instances of the cloud service. + :type role_instances: list[str] + """ + + _validation = { + 'role_instances': {'required': True}, + } + + _attribute_map = { + 'role_instances': {'key': 'roleInstances', 'type': '[str]'}, + } + + def __init__( + self, + *, + role_instances: List[str], + **kwargs + ): + super(RoleInstances, self).__init__(**kwargs) + self.role_instances = role_instances + + +class RoleInstanceView(msrest.serialization.Model): + """The instance view of the role instance. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar platform_update_domain: The Update Domain. + :vartype platform_update_domain: int + :ivar platform_fault_domain: The Fault Domain. + :vartype platform_fault_domain: int + :ivar private_id: Specifies a unique identifier generated internally for the cloud service + associated with this role instance. :code:`
`:code:`
` NOTE: If you are using Azure + Diagnostics extension, this property can be used as 'DeploymentId' for querying details. + :vartype private_id: str + :ivar statuses: + :vartype statuses: + list[~azure.mgmt.compute.v2020_10_01_preview.models.ResourceInstanceViewStatus] + """ + + _validation = { + 'platform_update_domain': {'readonly': True}, + 'platform_fault_domain': {'readonly': True}, + 'private_id': {'readonly': True}, + 'statuses': {'readonly': True}, + } + + _attribute_map = { + 'platform_update_domain': {'key': 'platformUpdateDomain', 'type': 'int'}, + 'platform_fault_domain': {'key': 'platformFaultDomain', 'type': 'int'}, + 'private_id': {'key': 'privateId', 'type': 'str'}, + 'statuses': {'key': 'statuses', 'type': '[ResourceInstanceViewStatus]'}, + } + + def __init__( + self, + **kwargs + ): + super(RoleInstanceView, self).__init__(**kwargs) + self.platform_update_domain = None + self.platform_fault_domain = None + self.private_id = None + self.statuses = None + + +class StatusCodeCount(msrest.serialization.Model): + """StatusCodeCount. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar code: The instance view status code. + :vartype code: str + :ivar count: Number of instances having this status code. + :vartype count: int + """ + + _validation = { + 'code': {'readonly': True}, + 'count': {'readonly': True}, + } + + _attribute_map = { + 'code': {'key': 'code', 'type': 'str'}, + 'count': {'key': 'count', 'type': 'int'}, + } + + def __init__( + self, + **kwargs + ): + super(StatusCodeCount, self).__init__(**kwargs) + self.code = None + self.count = None + + +class SubResource(msrest.serialization.Model): + """SubResource. + + :param id: Resource Id. + :type id: str + """ + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + } + + def __init__( + self, + *, + id: Optional[str] = None, + **kwargs + ): + super(SubResource, self).__init__(**kwargs) + self.id = id + + +class UpdateDomain(msrest.serialization.Model): + """Defines an update domain for the cloud service. + + Variables are only populated by the server, and will be ignored when sending a request. + + :ivar id: Resource Id. + :vartype id: str + :ivar name: Resource Name. + :vartype name: str + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(UpdateDomain, self).__init__(**kwargs) + self.id = None + self.name = None + + +class UpdateDomainListResult(msrest.serialization.Model): + """UpdateDomainListResult. + + All required parameters must be populated in order to send to Azure. + + :param value: Required. + :type value: list[~azure.mgmt.compute.v2020_10_01_preview.models.UpdateDomain] + :param next_link: + :type next_link: str + """ + + _validation = { + 'value': {'required': True}, + } + + _attribute_map = { + 'value': {'key': 'value', 'type': '[UpdateDomain]'}, + 'next_link': {'key': 'nextLink', 'type': 'str'}, + } + + def __init__( + self, + *, + value: List["UpdateDomain"], + next_link: Optional[str] = None, + **kwargs + ): + super(UpdateDomainListResult, self).__init__(**kwargs) + self.value = value + self.next_link = next_link diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/__init__.py new file mode 100644 index 000000000000..0ecb0abd1ee4 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/__init__.py @@ -0,0 +1,19 @@ +# 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 ._cloud_service_role_instances_operations import CloudServiceRoleInstancesOperations +from ._cloud_service_roles_operations import CloudServiceRolesOperations +from ._cloud_services_operations import CloudServicesOperations +from ._cloud_services_update_domain_operations import CloudServicesUpdateDomainOperations + +__all__ = [ + 'CloudServiceRoleInstancesOperations', + 'CloudServiceRolesOperations', + 'CloudServicesOperations', + 'CloudServicesUpdateDomainOperations', +] diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_service_role_instances_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_service_role_instances_operations.py new file mode 100644 index 000000000000..37d7447cf0e8 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_service_role_instances_operations.py @@ -0,0 +1,796 @@ +# 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 typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, IO, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class CloudServiceRoleInstancesOperations(object): + """CloudServiceRoleInstancesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.compute.v2020_10_01_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _delete_initial( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}'} # type: ignore + + def begin_delete( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes a role instance from a cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + role_instance_name=role_instance_name, + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}'} # type: ignore + + def get( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + expand="instanceView", # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> "_models.RoleInstance" + """Gets a role instance from a cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :param expand: The expand expression to apply to the operation. + :type expand: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RoleInstance, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstance + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoleInstance"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RoleInstance', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}'} # type: ignore + + def get_instance_view( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.RoleInstanceView" + """Retrieves information about the run-time state of a role instance in a cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: RoleInstanceView, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceView + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoleInstanceView"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get_instance_view.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('RoleInstanceView', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_instance_view.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/instanceView'} # type: ignore + + def list( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + expand="instanceView", # type: Optional[str] + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.RoleInstanceListResult"] + """Gets the list of all role instances in a cloud service. Use nextLink property in the response + to get the next page of role instances. Do this till nextLink is null to fetch all the role + instances. + + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :param expand: The expand expression to apply to the operation. + :type expand: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either RoleInstanceListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstanceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.RoleInstanceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('RoleInstanceListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances'} # type: ignore + + def _restart_initial( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._restart_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _restart_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/restart'} # type: ignore + + def begin_restart( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """The Reboot Role Instance asynchronous operation requests a reboot of a role instance in the + cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._restart_initial( + role_instance_name=role_instance_name, + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_restart.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/restart'} # type: ignore + + def _reimage_initial( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._reimage_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reimage_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/reimage'} # type: ignore + + def begin_reimage( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """The Reimage Role Instance asynchronous operation reinstalls the operating system on instances + of web roles or worker roles. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reimage_initial( + role_instance_name=role_instance_name, + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_reimage.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/reimage'} # type: ignore + + def _rebuild_initial( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._rebuild_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _rebuild_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/rebuild'} # type: ignore + + def begin_rebuild( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """The Rebuild Role Instance asynchronous operation reinstalls the operating system on instances + of web roles or worker roles and initializes the storage resources that are used by them. If + you do not want to initialize storage resources, you can use Reimage Role Instance. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._rebuild_initial( + role_instance_name=role_instance_name, + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_rebuild.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/rebuild'} # type: ignore + + def get_remote_desktop_file( + self, + role_instance_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> IO + """Gets a remote desktop file for a role instance in a cloud service. + + :param role_instance_name: Name of the role instance. + :type role_instance_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: IO, or the result of cls(response) + :rtype: IO + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType[IO] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/x-rdp" + + # Construct URL + url = self.get_remote_desktop_file.metadata['url'] # type: ignore + path_format_arguments = { + 'roleInstanceName': self._serialize.url("role_instance_name", role_instance_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=True, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = response.stream_download(self._client._pipeline) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_remote_desktop_file.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roleInstances/{roleInstanceName}/remoteDesktopFile'} # type: ignore diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_service_roles_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_service_roles_operations.py new file mode 100644 index 000000000000..cf24771e9266 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_service_roles_operations.py @@ -0,0 +1,185 @@ +# 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 typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.mgmt.core.exceptions import ARMErrorFormat + +from .. import models as _models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class CloudServiceRolesOperations(object): + """CloudServiceRolesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.compute.v2020_10_01_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def get( + self, + role_name, # type: str + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.CloudServiceRole" + """Gets a role from a cloud service. + + :param role_name: Name of the role. + :type role_name: str + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CloudServiceRole, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRole + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceRole"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'roleName': self._serialize.url("role_name", role_name, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CloudServiceRole', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles/{roleName}'} # type: ignore + + def list( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.CloudServiceRoleListResult"] + """Gets a list of all roles in a cloud service. Use nextLink property in the response to get the + next page of roles. Do this till nextLink is null to fetch all the roles. + + :param resource_group_name: + :type resource_group_name: str + :param cloud_service_name: + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CloudServiceRoleListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceRoleListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceRoleListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('CloudServiceRoleListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/roles'} # type: ignore diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_services_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_services_operations.py new file mode 100644 index 000000000000..3fb7f728a76b --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_services_operations.py @@ -0,0 +1,1397 @@ +# 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 typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class CloudServicesOperations(object): + """CloudServicesOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.compute.v2020_10_01_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _create_or_update_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.CloudService"] + **kwargs # type: Any + ): + # type: (...) -> "_models.CloudService" + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._create_or_update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'CloudService') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 201]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if response.status_code == 200: + deserialized = self._deserialize('CloudService', pipeline_response) + + if response.status_code == 201: + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _create_or_update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + def begin_create_or_update( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.CloudService"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.CloudService"] + """Create or update a cloud service. Please note some properties can be set only during cloud + service creation. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: The cloud service object. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudService + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either CloudService or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.compute.v2020_10_01_preview.models.CloudService] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + def _update_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.CloudServiceUpdate"] + **kwargs # type: Any + ): + # type: (...) -> "_models.CloudService" + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._update_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'CloudServiceUpdate') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.patch(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + _update_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + def begin_update( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.CloudServiceUpdate"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller["_models.CloudService"] + """Update a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: The cloud service object. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceUpdate + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either CloudService or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[~azure.mgmt.compute.v2020_10_01_preview.models.CloudService] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._update_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + return deserialized + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + def _delete_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._delete_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.delete(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202, 204]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + def begin_delete( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + def get( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.CloudService" + """Display information about a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CloudService, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudService + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudService"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CloudService', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}'} # type: ignore + + def get_instance_view( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> "_models.CloudServiceInstanceView" + """Gets the status of a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: CloudServiceInstanceView, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceInstanceView + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceInstanceView"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get_instance_view.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('CloudServiceInstanceView', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_instance_view.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/instanceView'} # type: ignore + + def list_all( + self, + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.CloudServiceListResult"] + """Gets a list of all cloud services in the subscription, regardless of the associated resource + group. Use nextLink property in the response to get the next page of Cloud Services. Do this + till nextLink is null to fetch all the Cloud Services. + + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CloudServiceListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_all.metadata['url'] # type: ignore + path_format_arguments = { + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('CloudServiceListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_all.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Compute/cloudServices'} # type: ignore + + def list( + self, + resource_group_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.CloudServiceListResult"] + """Gets a list of all cloud services under a resource group. Use nextLink property in the response + to get the next page of Cloud Services. Do this till nextLink is null to fetch all the Cloud + Services. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either CloudServiceListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.CloudServiceListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.CloudServiceListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('CloudServiceListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices'} # type: ignore + + def _start_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._start_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _start_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/start'} # type: ignore + + def begin_start( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Starts the cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._start_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_start.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/start'} # type: ignore + + def _power_off_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self._power_off_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.post(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _power_off_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/poweroff'} # type: ignore + + def begin_power_off( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Power off the cloud service. Note that resources are still attached and you are getting charged + for the resources. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._power_off_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_power_off.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/poweroff'} # type: ignore + + def _restart_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.RoleInstances"] + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._restart_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'RoleInstances') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _restart_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/restart'} # type: ignore + + def begin_restart( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.RoleInstances"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Restarts one or more role instances in a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: List of cloud service role instance names. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstances + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._restart_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_restart.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/restart'} # type: ignore + + def _reimage_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.RoleInstances"] + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._reimage_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'RoleInstances') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _reimage_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/reimage'} # type: ignore + + def begin_reimage( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.RoleInstances"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Reimage asynchronous operation reinstalls the operating system on instances of web roles or + worker roles. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: List of cloud service role instance names. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstances + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._reimage_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_reimage.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/reimage'} # type: ignore + + def _rebuild_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.RoleInstances"] + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._rebuild_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'RoleInstances') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _rebuild_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/rebuild'} # type: ignore + + def begin_rebuild( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.RoleInstances"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Rebuild Role Instances reinstalls the operating system on instances of web roles or worker + roles and initializes the storage resources that are used by them. If you do not want to + initialize storage resources, you can use Reimage Role Instances. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: List of cloud service role instance names. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstances + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._rebuild_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_rebuild.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/rebuild'} # type: ignore + + def _delete_instances_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.RoleInstances"] + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._delete_instances_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'RoleInstances') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.post(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _delete_instances_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/delete'} # type: ignore + + def begin_delete_instances( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + parameters=None, # type: Optional["_models.RoleInstances"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Deletes role instances in a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param parameters: List of cloud service role instance names. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.RoleInstances + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._delete_instances_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_delete_instances.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/delete'} # type: ignore diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_services_update_domain_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_services_update_domain_operations.py new file mode 100644 index 000000000000..238654320991 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/operations/_cloud_services_update_domain_operations.py @@ -0,0 +1,322 @@ +# 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 typing import TYPE_CHECKING +import warnings + +from azure.core.exceptions import ClientAuthenticationError, HttpResponseError, ResourceExistsError, ResourceNotFoundError, map_error +from azure.core.paging import ItemPaged +from azure.core.pipeline import PipelineResponse +from azure.core.pipeline.transport import HttpRequest, HttpResponse +from azure.core.polling import LROPoller, NoPolling, PollingMethod +from azure.mgmt.core.exceptions import ARMErrorFormat +from azure.mgmt.core.polling.arm_polling import ARMPolling + +from .. import models as _models + +if TYPE_CHECKING: + # pylint: disable=unused-import,ungrouped-imports + from typing import Any, Callable, Dict, Generic, Iterable, Optional, TypeVar, Union + + T = TypeVar('T') + ClsType = Optional[Callable[[PipelineResponse[HttpRequest, HttpResponse], T, Dict[str, Any]], Any]] + +class CloudServicesUpdateDomainOperations(object): + """CloudServicesUpdateDomainOperations operations. + + You should not instantiate this class directly. Instead, you should create a Client instance that + instantiates it for you and attaches it as an attribute. + + :ivar models: Alias to model classes used in this operation group. + :type models: ~azure.mgmt.compute.v2020_10_01_preview.models + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + """ + + models = _models + + def __init__(self, client, config, serializer, deserializer): + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self._config = config + + def _walk_update_domain_initial( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + update_domain, # type: int + parameters=None, # type: Optional["_models.UpdateDomain"] + **kwargs # type: Any + ): + # type: (...) -> None + cls = kwargs.pop('cls', None) # type: ClsType[None] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + content_type = kwargs.pop("content_type", "application/json") + accept = "application/json" + + # Construct URL + url = self._walk_update_domain_initial.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'updateDomain': self._serialize.url("update_domain", update_domain, 'int'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Content-Type'] = self._serialize.header("content_type", content_type, 'str') + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + body_content_kwargs = {} # type: Dict[str, Any] + if parameters is not None: + body_content = self._serialize.body(parameters, 'UpdateDomain') + else: + body_content = None + body_content_kwargs['content'] = body_content + request = self._client.put(url, query_parameters, header_parameters, **body_content_kwargs) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200, 202]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + if cls: + return cls(pipeline_response, None, {}) + + _walk_update_domain_initial.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}'} # type: ignore + + def begin_walk_update_domain( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + update_domain, # type: int + parameters=None, # type: Optional["_models.UpdateDomain"] + **kwargs # type: Any + ): + # type: (...) -> LROPoller[None] + """Updates the role instances in the specified update domain. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param update_domain: Specifies an integer value that identifies the update domain. Update + domains are identified with a zero-based index: the first update domain has an ID of 0, the + second has an ID of 1, and so on. + :type update_domain: int + :param parameters: The update domain object. + :type parameters: ~azure.mgmt.compute.v2020_10_01_preview.models.UpdateDomain + :keyword callable cls: A custom type or function that will be passed the direct response + :keyword str continuation_token: A continuation token to restart a poller from a saved state. + :keyword polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :paramtype polling: bool or ~azure.core.polling.PollingMethod + :keyword int polling_interval: Default waiting time between two polls for LRO operations if no Retry-After header is present. + :return: An instance of LROPoller that returns either None or the result of cls(response) + :rtype: ~azure.core.polling.LROPoller[None] + :raises ~azure.core.exceptions.HttpResponseError: + """ + polling = kwargs.pop('polling', True) # type: Union[bool, PollingMethod] + cls = kwargs.pop('cls', None) # type: ClsType[None] + lro_delay = kwargs.pop( + 'polling_interval', + self._config.polling_interval + ) + cont_token = kwargs.pop('continuation_token', None) # type: Optional[str] + if cont_token is None: + raw_result = self._walk_update_domain_initial( + resource_group_name=resource_group_name, + cloud_service_name=cloud_service_name, + update_domain=update_domain, + parameters=parameters, + cls=lambda x,y,z: x, + **kwargs + ) + + kwargs.pop('error_map', None) + kwargs.pop('content_type', None) + + def get_long_running_output(pipeline_response): + if cls: + return cls(pipeline_response, None, {}) + + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'updateDomain': self._serialize.url("update_domain", update_domain, 'int'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + + if polling is True: polling_method = ARMPolling(lro_delay, path_format_arguments=path_format_arguments, **kwargs) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + if cont_token: + return LROPoller.from_continuation_token( + polling_method=polling_method, + continuation_token=cont_token, + client=self._client, + deserialization_callback=get_long_running_output + ) + else: + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + begin_walk_update_domain.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}'} # type: ignore + + def get_update_domain( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + update_domain, # type: int + **kwargs # type: Any + ): + # type: (...) -> "_models.UpdateDomain" + """Gets the specified update domain of a cloud service. Use nextLink property in the response to + get the next page of update domains. Do this till nextLink is null to fetch all the update + domains. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :param update_domain: Specifies an integer value that identifies the update domain. Update + domains are identified with a zero-based index: the first update domain has an ID of 0, the + second has an ID of 1, and so on. + :type update_domain: int + :keyword callable cls: A custom type or function that will be passed the direct response + :return: UpdateDomain, or the result of cls(response) + :rtype: ~azure.mgmt.compute.v2020_10_01_preview.models.UpdateDomain + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.UpdateDomain"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + # Construct URL + url = self.get_update_domain.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'updateDomain': self._serialize.url("update_domain", update_domain, 'int'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + deserialized = self._deserialize('UpdateDomain', pipeline_response) + + if cls: + return cls(pipeline_response, deserialized, {}) + + return deserialized + get_update_domain.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/updateDomains/{updateDomain}'} # type: ignore + + def list_update_domains( + self, + resource_group_name, # type: str + cloud_service_name, # type: str + **kwargs # type: Any + ): + # type: (...) -> Iterable["_models.UpdateDomainListResult"] + """Gets a list of all update domains in a cloud service. + + :param resource_group_name: Name of the resource group. + :type resource_group_name: str + :param cloud_service_name: Name of the cloud service. + :type cloud_service_name: str + :keyword callable cls: A custom type or function that will be passed the direct response + :return: An iterator like instance of either UpdateDomainListResult or the result of cls(response) + :rtype: ~azure.core.paging.ItemPaged[~azure.mgmt.compute.v2020_10_01_preview.models.UpdateDomainListResult] + :raises: ~azure.core.exceptions.HttpResponseError + """ + cls = kwargs.pop('cls', None) # type: ClsType["_models.UpdateDomainListResult"] + error_map = { + 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError + } + error_map.update(kwargs.pop('error_map', {})) + api_version = "2020-10-01-preview" + accept = "application/json" + + def prepare_request(next_link=None): + # Construct headers + header_parameters = {} # type: Dict[str, Any] + header_parameters['Accept'] = self._serialize.header("accept", accept, 'str') + + if not next_link: + # Construct URL + url = self.list_update_domains.metadata['url'] # type: ignore + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'cloudServiceName': self._serialize.url("cloud_service_name", cloud_service_name, 'str'), + 'subscriptionId': self._serialize.url("self._config.subscription_id", self._config.subscription_id, 'str'), + } + url = self._client.format_url(url, **path_format_arguments) + # Construct parameters + query_parameters = {} # type: Dict[str, Any] + query_parameters['api-version'] = self._serialize.query("api_version", api_version, 'str') + + request = self._client.get(url, query_parameters, header_parameters) + else: + url = next_link + query_parameters = {} # type: Dict[str, Any] + request = self._client.get(url, query_parameters, header_parameters) + return request + + def extract_data(pipeline_response): + deserialized = self._deserialize('UpdateDomainListResult', pipeline_response) + list_of_elem = deserialized.value + if cls: + list_of_elem = cls(list_of_elem) + return deserialized.next_link or None, iter(list_of_elem) + + def get_next(next_link=None): + request = prepare_request(next_link) + + pipeline_response = self._client._pipeline.run(request, stream=False, **kwargs) + response = pipeline_response.http_response + + if response.status_code not in [200]: + map_error(status_code=response.status_code, response=response, error_map=error_map) + raise HttpResponseError(response=response, error_format=ARMErrorFormat) + + return pipeline_response + + return ItemPaged( + get_next, extract_data + ) + list_update_domains.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/cloudServices/{cloudServiceName}/updateDomains'} # type: ignore diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/py.typed b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/py.typed new file mode 100644 index 000000000000..e5aff4f83af8 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_10_01_preview/py.typed @@ -0,0 +1 @@ +# Marker file for PEP 561. \ No newline at end of file diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_availability_sets.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_availability_sets.yaml index 845f021c00c2..882d1e34d382 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_availability_sets.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_availability_sets.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/availabilitySets/availabilitysetse7f013f3?api-version=2020-06-01 response: @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:53:55 GMT + - Tue, 02 Feb 2021 08:25:35 GMT expires: - '-1' pragma: @@ -65,7 +65,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/availabilitySets/availabilitysetse7f013f3?api-version=2020-06-01 response: @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:53:55 GMT + - Tue, 02 Feb 2021 08:25:36 GMT expires: - '-1' pragma: @@ -119,7 +119,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/availabilitySets/availabilitysetse7f013f3?api-version=2020-06-01 response: @@ -137,7 +137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:53:55 GMT + - Tue, 02 Feb 2021 08:25:37 GMT expires: - '-1' pragma: @@ -172,7 +172,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/availabilitySets/availabilitysetse7f013f3?api-version=2020-06-01 response: @@ -184,7 +184,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 07:53:59 GMT + - Tue, 02 Feb 2021 08:25:42 GMT expires: - '-1' pragma: diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_log_analytics.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_log_analytics.yaml index 5fd215b8014a..2ae05b4672d6 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_log_analytics.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_log_analytics.yaml @@ -1,7 +1,7 @@ interactions: - request: - body: '{"blobContainerSasUri": "fakeuri", "fromTime": "2021-01-18T03:44:02.647271Z", - "toTime": "2021-01-20T03:44:02.647277Z", "groupByResourceName": true, "intervalLength": + body: '{"blobContainerSasUri": "fakeuri", "fromTime": "2021-02-01T03:00:30.912225Z", + "toTime": "2021-02-03T03:00:30.912232Z", "groupByResourceName": true, "intervalLength": "SixtyMins"}' headers: Accept: @@ -15,56 +15,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/logAnalytics/apiAccess/getRequestRateByInterval?api-version=2020-06-01 - response: - body: - string: '{"error":{"code":"ServerTimeout","message":"The request timed out. - Diagnostic information: timestamp ''20210120T034516Z'', subscription id ''00000000-0000-0000-0000-000000000000'', - tracking id ''cd8e4d6c-0e9c-485a-897c-944a90162921'', request correlation - id ''cd8e4d6c-0e9c-485a-897c-944a90162921''."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '294' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Jan 2021 03:45:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - gateway - status: - code: 503 - message: Service Unavailable -- request: - body: '{"blobContainerSasUri": "fakeuri", "fromTime": "2021-01-18T03:44:02.647271Z", - "toTime": "2021-01-20T03:44:02.647277Z", "groupByResourceName": true, "intervalLength": - "SixtyMins"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '178' - Content-Type: - - application/json - User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/logAnalytics/apiAccess/getRequestRateByInterval?api-version=2020-06-01 response: @@ -79,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:46:09 GMT + - Wed, 03 Feb 2021 03:00:31 GMT expires: - '-1' pragma: @@ -94,8 +45,8 @@ interactions: code: 404 message: Not Found - request: - body: '{"blobContainerSasUri": "fakeuri", "fromTime": "2021-01-18T03:46:10.242391Z", - "toTime": "2021-01-20T03:46:10.242396Z", "groupByOperationName": true, "groupByResourceName": + body: '{"blobContainerSasUri": "fakeuri", "fromTime": "2021-02-01T03:00:31.833854Z", + "toTime": "2021-02-03T03:00:31.833871Z", "groupByOperationName": true, "groupByResourceName": false}' headers: Accept: @@ -109,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/logAnalytics/apiAccess/getThrottledRequests?api-version=2020-06-01 response: @@ -124,7 +75,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:46:40 GMT + - Wed, 03 Feb 2021 03:00:32 GMT expires: - '-1' pragma: diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_proximity_placement_groups.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_proximity_placement_groups.yaml index 31be4e810f8b..844ae8ee9416 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_proximity_placement_groups.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute.test_compute_proximity_placement_groups.yaml @@ -13,7 +13,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/proximityPlacementGroups/proximiityplacementgroupsb24517e6?api-version=2020-06-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:26 GMT + - Tue, 02 Feb 2021 08:26:08 GMT expires: - '-1' pragma: @@ -60,7 +60,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/proximityPlacementGroups/proximiityplacementgroupsb24517e6?api-version=2020-06-01 response: @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:26 GMT + - Tue, 02 Feb 2021 08:26:08 GMT expires: - '-1' pragma: @@ -114,7 +114,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/proximityPlacementGroups/proximiityplacementgroupsb24517e6?api-version=2020-06-01 response: @@ -132,7 +132,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:27 GMT + - Tue, 02 Feb 2021 08:26:09 GMT expires: - '-1' pragma: @@ -167,7 +167,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/proximityPlacementGroups/proximiityplacementgroupsb24517e6?api-version=2020-06-01 response: @@ -179,7 +179,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 07:54:30 GMT + - Tue, 02 Feb 2021 08:26:12 GMT expires: - '-1' pragma: diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_base_async.test_compute_vm.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_base_async.test_compute_vm.yaml index 518eb01f7e4e..1d208791b24a 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_base_async.test_compute_vm.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_base_async.test_compute_vm.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234\"\ - ,\r\n \"etag\": \"W/\\\"72f2578a-1aa9-4bb1-8787-99d21c31013b\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"c86f4095-5fb7-4328-833e-c4c2c883ae4f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"ce63c249-c415-4622-a9c1-4a36e8fa14b6\",\r\n \"\ + \ \"resourceGuid\": \"33175bf0-0e37-411c-bba0-4f4278cadbbd\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/79f471c1-e71d-42b1-8e54-0a957ef7e092?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5d608d65-b347-46a7-b1c9-c1e5cad68e4d?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:49 GMT + - Tue, 02 Feb 2021 08:26:36 GMT expires: - '-1' pragma: @@ -53,7 +53,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 857ecf3e-bede-4b44-b5dc-fb5dfb613dd4 + - 6a290c90-d6f7-4504-a407-73ae8a15a93d x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/79f471c1-e71d-42b1-8e54-0a957ef7e092?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/5d608d65-b347-46a7-b1c9-c1e5cad68e4d?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:53 GMT + - Tue, 02 Feb 2021 08:26:39 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4cdd09a9-5dd9-469d-b179-74640ee8b902 + - 2f84ec19-f829-4f90-b7f0-71fb8f161750 status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234\"\ - ,\r\n \"etag\": \"W/\\\"af40c0ef-c18a-4704-9de9-93c21939307f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8d382575-3be7-4c07-a1cd-11e5b108ce02\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"ce63c249-c415-4622-a9c1-4a36e8fa14b6\",\r\n \"\ + \ \"resourceGuid\": \"33175bf0-0e37-411c-bba0-4f4278cadbbd\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:53 GMT + - Tue, 02 Feb 2021 08:26:39 GMT etag: - - W/"af40c0ef-c18a-4704-9de9-93c21939307f" + - W/"8d382575-3be7-4c07-a1cd-11e5b108ce02" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65d82ec7-c186-45e3-b65b-b03841769e1d + - b33e149b-744d-47bb-b77e-d11edd235231 status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234/subnets/subnetxxx9a731234?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234/subnets/subnetxxx9a731234?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetxxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234/subnets/subnetxxx9a731234\"\ - ,\r\n \"etag\": \"W/\\\"914430f6-4d3f-4a99-b397-9721e34d3d40\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"34938e60-e659-42f4-91f3-2d55a872c736\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/62b8ad77-9ba0-4bc6-8bbf-1bb230eabe41?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/961d98b4-3349-4052-9baa-5ee9a0ee88ef?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:54 GMT + - Tue, 02 Feb 2021 08:26:40 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f292936b-40fb-4e31-8d44-8061295ab417 + - b4286b9d-2c3a-4ebb-b383-77ab164dc6e8 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/62b8ad77-9ba0-4bc6-8bbf-1bb230eabe41?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/961d98b4-3349-4052-9baa-5ee9a0ee88ef?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:58 GMT + - Tue, 02 Feb 2021 08:26:43 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ae206aa2-82fc-4cab-82b3-05b5fce31b68 + - f7925127-bc43-4aac-ae44-ee6e066a629c status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234/subnets/subnetxxx9a731234?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234/subnets/subnetxxx9a731234?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetxxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexxx9a731234/subnets/subnetxxx9a731234\"\ - ,\r\n \"etag\": \"W/\\\"7f48aa3e-dcc3-45ef-86a4-bf8574e995f4\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9e84e89b-6340-44f3-950b-9ed9da58c9be\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:54:58 GMT + - Tue, 02 Feb 2021 08:26:44 GMT etag: - - W/"7f48aa3e-dcc3-45ef-86a4-bf8574e995f4" + - W/"9e84e89b-6340-44f3-950b-9ed9da58c9be" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7fd2861a-7066-47b0-b94f-1db2c2cf7f56 + - ebf4374d-9b9e-4471-a6b3-487fe0f50b80 status: code: 200 message: OK @@ -325,18 +325,18 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"interfacexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234\"\ - ,\r\n \"etag\": \"W/\\\"45bfa49a-ff40-4292-9a67-04a08a35b175\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"c236e0cf-164c-4f28-80dd-6ab4decca46b\\\"\",\r\n \ \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"4969e4e8-515c-4b15-a77a-16fb920021ff\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"84b0dc8c-876f-4dce-a27f-14abc9277149\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"MyIpConfig\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234/ipConfigurations/MyIpConfig\"\ - ,\r\n \"etag\": \"W/\\\"45bfa49a-ff40-4292-9a67-04a08a35b175\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c236e0cf-164c-4f28-80dd-6ab4decca46b\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -344,7 +344,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"jhbghtqvyqrenkobji1or4quwg.bx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"4bnromzxbyoedo3aj3bhrsw1xf.bx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ \n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ @@ -353,7 +353,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/090a4825-6c94-41ee-a8e1-0594278c28fb?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5a0c1d7-3386-45ee-b090-12e3fbd26117?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:55:03 GMT + - Tue, 02 Feb 2021 08:26:48 GMT expires: - '-1' pragma: @@ -374,7 +374,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57baded6-55ad-43f9-9486-789bbed72e94 + - 9352eb90-c3bd-4ace-91f7-7c42b993c0a4 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -390,9 +390,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/090a4825-6c94-41ee-a8e1-0594278c28fb?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a5a0c1d7-3386-45ee-b090-12e3fbd26117?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -404,7 +404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:55:34 GMT + - Tue, 02 Feb 2021 08:27:18 GMT expires: - '-1' pragma: @@ -421,7 +421,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1698a1f4-65eb-4110-95f2-20892b4766df + - 305d4ece-0548-42f3-b9cf-af22e3e64359 status: code: 200 message: OK @@ -435,18 +435,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"interfacexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234\"\ - ,\r\n \"etag\": \"W/\\\"45bfa49a-ff40-4292-9a67-04a08a35b175\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"c236e0cf-164c-4f28-80dd-6ab4decca46b\\\"\",\r\n \ \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"4969e4e8-515c-4b15-a77a-16fb920021ff\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"84b0dc8c-876f-4dce-a27f-14abc9277149\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"MyIpConfig\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234/ipConfigurations/MyIpConfig\"\ - ,\r\n \"etag\": \"W/\\\"45bfa49a-ff40-4292-9a67-04a08a35b175\\\"\"\ + ,\r\n \"etag\": \"W/\\\"c236e0cf-164c-4f28-80dd-6ab4decca46b\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -454,7 +454,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"jhbghtqvyqrenkobji1or4quwg.bx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"4bnromzxbyoedo3aj3bhrsw1xf.bx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ \n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ @@ -467,9 +467,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 07:55:34 GMT + - Tue, 02 Feb 2021 08:27:18 GMT etag: - - W/"45bfa49a-ff40-4292-9a67-04a08a35b175" + - W/"c236e0cf-164c-4f28-80dd-6ab4decca46b" expires: - '-1' pragma: @@ -486,7 +486,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 01440bca-7e93-40a4-8a6f-8b50cac675bf + - 9b7f51fb-e58a-4255-bdec-21b18a52a340 status: code: 200 message: OK @@ -509,19 +509,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"830a6563-f966-45c3-a449-be7d9eb8016f\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eb633740-a822-4995-bc84-7775f07647d4\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ @@ -546,39 +547,39 @@ interactions: \r\n }\r\n}" headers: azure-asyncnotification: Enabled - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c8f01085-998e-4792-9b83-6a40a6bb427c?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 cache-control: no-cache - content-length: '2323' + content-length: '2430' content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:55:46 GMT + date: Tue, 02 Feb 2021 08:27:34 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff x-ms-ratelimit-remaining-resource: Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197 - x-ms-ratelimit-remaining-subscription-writes: '1198' + x-ms-ratelimit-remaining-subscription-writes: '1199' status: code: 201 message: Created - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c8f01085-998e-4792-9b83-6a40a6bb427c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T07:55:44.2545288+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c8f01085-998e-4792-9b83-6a40a6bb427c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:27:32.5564698+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"3cddc895-d41f-40de-af54-4bbc59bcb179\"\ \r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:55:56 GMT + date: Tue, 02 Feb 2021 08:27:44 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -590,24 +591,24 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/c8f01085-998e-4792-9b83-6a40a6bb427c?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c8f01085-998e-4792-9b83-6a40a6bb427c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T07:55:44.2545288+00:00\",\r\n \"\ - endTime\": \"2021-01-19T07:56:47.0826201+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"c8f01085-998e-4792-9b83-6a40a6bb427c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:27:32.5564698+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"3cddc895-d41f-40de-af54-4bbc59bcb179\"\ + \r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:56:47 GMT + date: Tue, 02 Feb 2021 08:28:35 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -619,40 +620,99 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/c8f01085-998e-4792-9b83-6a40a6bb427c?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 +- request: + body: null + headers: + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T08:27:32.5564698+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"3cddc895-d41f-40de-af54-4bbc59bcb179\"\ + \r\n}" + headers: + cache-control: no-cache + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Tue, 02 Feb 2021 08:29:07 GMT + expires: '-1' + pragma: no-cache + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000; includeSubDomains + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997 + status: + code: 200 + message: OK + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 +- request: + body: null + headers: + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T08:27:32.5564698+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:29:07.5564445+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"3cddc895-d41f-40de-af54-4bbc59bcb179\"\r\n}" + headers: + cache-control: no-cache + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Tue, 02 Feb 2021 08:29:37 GMT + expires: '-1' + pragma: no-cache + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000; includeSubDomains + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + status: + code: 200 + message: OK + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/3cddc895-d41f-40de-af54-4bbc59bcb179?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"830a6563-f966-45c3-a449-be7d9eb8016f\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eb633740-a822-4995-bc84-7775f07647d4\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Standard_LRS\",\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"myVM\",\r\n \"adminUsername\": \"testuser\",\r\ @@ -668,7 +728,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:56:48 GMT + date: Tue, 02 Feb 2021 08:29:37 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -676,11 +736,11 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31998 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31997 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 - request: body: '{"location": "eastus", "properties": {"publisher": "Microsoft.Azure.NetworkWatcher", "type": "NetworkWatcherAgentWindows", "typeHandlerVersion": "1.4", "autoUpgradeMinorVersion": @@ -693,7 +753,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 response: @@ -707,11 +767,11 @@ interactions: ,\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}" headers: azure-asyncnotification: Enabled - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/853bd2f9-ebc2-49c8-a75a-18c57d33e208?api-version=2020-06-01 cache-control: no-cache content-length: '636' content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:56:56 GMT + date: Tue, 02 Feb 2021 08:29:46 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -722,53 +782,24 @@ interactions: status: code: 201 message: Created - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 -- request: - body: null - headers: - User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-01-19T07:56:54.5357549+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a39e0dd0-f05c-4926-832a-28c4f546a1af\"\ - \r\n}" - headers: - cache-control: no-cache - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:57:26 GMT - expires: '-1' - pragma: no-cache - server: Microsoft-HTTPAPI/2.0 - strict-transport-security: max-age=31536000; includeSubDomains - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996 - status: - code: 200 - message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/853bd2f9-ebc2-49c8-a75a-18c57d33e208?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T07:56:54.5357549+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a39e0dd0-f05c-4926-832a-28c4f546a1af\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:29:45.3067137+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"853bd2f9-ebc2-49c8-a75a-18c57d33e208\"\ \r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:57:57 GMT + date: Tue, 02 Feb 2021 08:30:17 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -776,28 +807,28 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/853bd2f9-ebc2-49c8-a75a-18c57d33e208?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/853bd2f9-ebc2-49c8-a75a-18c57d33e208?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T07:56:54.5357549+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"a39e0dd0-f05c-4926-832a-28c4f546a1af\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:29:45.3067137+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"853bd2f9-ebc2-49c8-a75a-18c57d33e208\"\ \r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:58:28 GMT + date: Tue, 02 Feb 2021 08:30:48 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -805,28 +836,28 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/853bd2f9-ebc2-49c8-a75a-18c57d33e208?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/853bd2f9-ebc2-49c8-a75a-18c57d33e208?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T07:56:54.5357549+00:00\",\r\n \"\ - endTime\": \"2021-01-19T07:58:55.8482877+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"a39e0dd0-f05c-4926-832a-28c4f546a1af\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:29:45.3067137+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:31:03.7755208+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"853bd2f9-ebc2-49c8-a75a-18c57d33e208\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:58:59 GMT + date: Tue, 02 Feb 2021 08:31:19 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -834,16 +865,16 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29992 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29991 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/a39e0dd0-f05c-4926-832a-28c4f546a1af?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/853bd2f9-ebc2-49c8-a75a-18c57d33e208?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 response: @@ -859,7 +890,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:00 GMT + date: Tue, 02 Feb 2021 08:31:19 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -867,29 +898,29 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31996 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31995 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/instanceView?api-version=2020-06-01 response: body: string: "{\r\n \"computerName\": \"myVM\",\r\n \"osName\": \"Windows Server\ \ 2016 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 10.0.14393.0\"\ - ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1005\",\r\n \ + ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"GuestAgent is running and processing the extensions.\"\ - ,\r\n \"time\": \"2021-01-19T07:58:53+00:00\"\r\n }\r\n ],\r\ + ,\r\n \"time\": \"2021-02-02T08:30:54+00:00\"\r\n }\r\n ],\r\ \n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.NetworkWatcher.NetworkWatcherAgentWindows\"\ ,\r\n \"typeHandlerVersion\": \"1.4.1693.1\",\r\n \"status\"\ : {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"\ @@ -899,15 +930,15 @@ interactions: \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myVMosdisk\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T07:55:46.3795237+00:00\"\ - \r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T08:27:43.7283428+00:00\"\ + \r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T07:55:46.3795237+00:00\"\ - \r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T08:27:43.7283428+00:00\"\ + \r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T07:55:46.3795237+00:00\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T08:27:43.7283428+00:00\"\ \r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\ \n \"name\": \"virtualmachineextensionxxx9a731234\",\r\n \"type\"\ : \"Microsoft.Azure.NetworkWatcher.NetworkWatcherAgentWindows\",\r\n \ @@ -919,14 +950,14 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ : \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T07:58:55.8326505+00:00\"\r\n },\r\n {\r\n\ + \ \"time\": \"2021-02-02T08:31:03.7755208+00:00\"\r\n },\r\n {\r\n\ \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n\ \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:00 GMT + date: Tue, 02 Feb 2021 08:31:20 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -938,14 +969,14 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/instanceView?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/instanceView?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 response: @@ -961,7 +992,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:00 GMT + date: Tue, 02 Feb 2021 08:31:20 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -973,14 +1004,14 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 - request: body: null headers: Accept: - application/json, text/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/runCommands/RunPowerShellScript?api-version=2020-06-01 response: @@ -1000,7 +1031,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:01 GMT + date: Tue, 02 Feb 2021 08:31:20 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -1019,42 +1050,51 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/vmSizes?api-version=2020-06-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_B1ls\",\r\ - \n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \ - \ \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 512,\r\n \ - \ \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_B1ms\"\ + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n\ + \ \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \ + \ \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \ + \ \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\"\ ,\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 2048,\r\n\ - \ \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_B1s\"\ - ,\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 1024,\r\n\ - \ \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_B2ms\"\ - ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n\ - \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_B2s\"\ + \ \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n\ + \ \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\"\ ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 8192,\r\n \"memoryInMB\": 4096,\r\n\ - \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_B4ms\"\ + \ \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n\ + \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\"\ ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n\ - \ \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_B8ms\"\ + \ \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n\ + \ \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\"\ + ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\ + \n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\"\ ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n\ - \ \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_B12ms\"\ - ,\r\n \"numberOfCores\": 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 98304,\r\n \"memoryInMB\": 49152,\r\n\ - \ \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_B16ms\"\ - ,\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 65536,\r\ - \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ - Standard_B20ms\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\"\ - : 1047552,\r\n \"resourceDiskSizeInMB\": 163840,\r\n \"memoryInMB\"\ - : 81920,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + \ \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\ + \n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"\ + Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\"\ + : 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\"\ + : 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\"\ + : 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\"\ + : \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\"\ + : 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\"\ + : \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\"\ + : 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ + : \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\"\ + : 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\"\ + : 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\"\ : 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\"\ : 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ @@ -1124,45 +1164,6 @@ interactions: \n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\"\ : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\ - \n },\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\"\ - : 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n\ - \ },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\"\ - : 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\ - \n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\"\ - : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\ - \n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\"\ - : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\ - \n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\"\ - : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\ - \n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\"\ - : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\ - \n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\"\ - : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\ - \n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\"\ - : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\ - \n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\"\ - : 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n\ - \ },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\"\ - : 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\ - \n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\"\ - : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\ - \n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\"\ - : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\ - \n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\"\ - : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\ \n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\"\ : 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\ @@ -1199,8 +1200,38 @@ interactions: \n },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\"\ : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\":\ - \ 32\r\n },\r\n {\r\n \"name\": \"Standard_D48_v3\",\r\n \"\ - numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_B1ls\",\r\n \"\ + numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 4096,\r\n \"memoryInMB\": 512,\r\n \"maxDataDiskCount\": 2\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_B1ms\",\r\n \"numberOfCores\"\ + : 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\"\ + : 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 4096,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\"\ + : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\ + \n },\r\n {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\"\ + : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\ + \n },\r\n {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_B12ms\",\r\n \"numberOfCores\"\ + : 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 98304,\r\n \"memoryInMB\": 49152,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_B16ms\",\r\n \"numberOfCores\"\ + : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\ + \n },\r\n {\r\n \"name\": \"Standard_B20ms\",\r\n \"numberOfCores\"\ + : 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 163840,\r\n \"memoryInMB\": 81920,\r\n \"maxDataDiskCount\": 32\r\ + \n },\r\n {\r\n \"name\": \"Standard_D48_v3\",\r\n \"numberOfCores\"\ + : 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\"\ : 32\r\n },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"\ numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ @@ -1223,49 +1254,83 @@ interactions: \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"\ numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\":\ - \ 32\r\n },\r\n {\r\n \"name\": \"Standard_D1\",\r\n \"numberOfCores\"\ - : 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\ - \n },\r\n {\r\n \"name\": \"Standard_D2\",\r\n \"numberOfCores\"\ - : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\ - \n },\r\n {\r\n \"name\": \"Standard_D3\",\r\n \"numberOfCores\"\ - : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\ - \n },\r\n {\r\n \"name\": \"Standard_D4\",\r\n \"numberOfCores\"\ - : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\ - \n },\r\n {\r\n \"name\": \"Standard_D11\",\r\n \"numberOfCores\"\ - : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\ - \n },\r\n {\r\n \"name\": \"Standard_D12\",\r\n \"numberOfCores\"\ - : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\ - \n },\r\n {\r\n \"name\": \"Standard_D13\",\r\n \"numberOfCores\"\ - : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\ - \n },\r\n {\r\n \"name\": \"Standard_D14\",\r\n \"numberOfCores\"\ - : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\":\ - \ 64\r\n },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"\ - numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n\ - \ },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\"\ - : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\ - \n },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\"\ - : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\ - \n },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\"\ - : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\ - \n },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\"\ - : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\ - \n },\r\n {\r\n \"name\": \"Standard_DS11-1_v2\",\r\n \"numberOfCores\"\ - : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ - : 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\ - \n },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\"\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E48_v3\",\r\n \"\ + numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 1228800,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\"\ + : 32\r\n },\r\n {\r\n \"name\": \"Standard_E64i_v3\",\r\n \ + \ \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 1638400,\r\n \"memoryInMB\": 442368,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64_v3\"\ + ,\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 1638400,\r\n \"memoryInMB\": 442368,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_D1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\"\ + : 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ + : \"Standard_D2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\"\ + : 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_D3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\"\ + : 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_D4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\"\ + : 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_D11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\"\ + : 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_D12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\"\ + : 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_D13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\"\ + : 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_D14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\"\ + : 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\"\ + : 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ + : \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\"\ + : 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\"\ + : 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\"\ + : 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS11\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\"\ + : 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_DS12\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\"\ + : 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS13\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\"\ + : 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\"\ + : 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\"\ + : 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ + : \"Standard_DS2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\"\ + : 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_DS3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\"\ + : 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\"\ + : 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\"\ + : 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS11-1_v2\",\r\n \"numberOfCores\": 2,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \ + \ \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n\ + \ {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\"\ : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\ \n },\r\n {\r\n \"name\": \"Standard_DS12-1_v2\",\r\n \"numberOfCores\"\ @@ -1317,95 +1382,523 @@ interactions: name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ : 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\"\ : 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ - : \"Standard_D4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : \"Standard_D4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\"\ + : 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_D8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\"\ + : 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n\ + \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\"\ + : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_D48s_v3\",\r\n \ + \ \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 196608,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64s_v3\"\ + ,\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_E2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\"\ + : 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ + : \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\"\ + : 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_E4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\"\ + : 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\"\ + : 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": 8,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n\ + \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\ + \n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\"\ + : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \ + \ \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \ + \ \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E16s_v3\"\ + ,\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_E20s_v3\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 327680,\r\n \"memoryInMB\"\ + : 163840,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": 32,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n\ + \ \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\"\ + : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \ + \ \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E48s_v3\"\ + ,\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 393216,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_E64-16s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\"\ + : 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": 64,\r\n \ + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\ + \n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E64is_v3\",\r\n \"numberOfCores\"\ + : 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \ + \ \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\": 442368,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\"\ + ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n\ + \ \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\"\ + ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n\ + \ \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\"\ + ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n\ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\"\ + ,\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\ + \n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"\ + Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\"\ + : 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ + : \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\"\ + : 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ + name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \ + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\ + \n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\"\ + : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\":\ + \ 64\r\n },\r\n {\r\n \"name\": \"Standard_E2_v4\",\r\n \"\ + numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E4_v4\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E8_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E16_v4\",\r\n \"numberOfCores\"\ + : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E20_v4\",\r\n \"numberOfCores\"\ + : 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E32_v4\",\r\n \"numberOfCores\"\ + : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E48_v4\",\r\n \"numberOfCores\"\ + : 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E64_v4\",\r\n \"numberOfCores\"\ + : 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E2d_v4\",\r\n \"numberOfCores\"\ + : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\ + \n },\r\n {\r\n \"name\": \"Standard_E4d_v4\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\ + \n },\r\n {\r\n \"name\": \"Standard_E8d_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_E16d_v4\",\r\n \"numberOfCores\"\ + : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E20d_v4\",\r\n \ + \ \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 768000,\r\n \"memoryInMB\": 163840,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32d_v4\"\ + ,\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 1228800,\r\n \"memoryInMB\": 262144,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_E48d_v4\",\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 1843200,\r\n \"memoryInMB\"\ + : 393216,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_E64d_v4\",\r\n \"numberOfCores\": 64,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\n\ + \ \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E2s_v4\",\r\n \"numberOfCores\"\ + : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E4-2s_v4\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E4s_v4\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E8-2s_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E8-4s_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E8s_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E16-4s_v4\",\r\n \"numberOfCores\"\ + : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E16-8s_v4\",\r\n \"numberOfCores\"\ + : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E16s_v4\",\r\n \"numberOfCores\"\ + : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E20s_v4\",\r\n \"numberOfCores\"\ + : 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E32-8s_v4\",\r\n \"numberOfCores\"\ + : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E32-16s_v4\",\r\n \"numberOfCores\"\ + : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E32s_v4\",\r\n \"numberOfCores\"\ + : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E48s_v4\",\r\n \"numberOfCores\"\ + : 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 393216,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E64-16s_v4\",\r\n \"numberOfCores\"\ + : 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E64-32s_v4\",\r\n \"numberOfCores\"\ + : 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E64s_v4\",\r\n \"numberOfCores\"\ + : 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E80is_v4\",\r\n \"numberOfCores\"\ + : 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 0,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n\ + \ },\r\n {\r\n \"name\": \"Standard_E2ds_v4\",\r\n \"numberOfCores\"\ + : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 76800,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\ + \n },\r\n {\r\n \"name\": \"Standard_E4-2ds_v4\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\ + \n },\r\n {\r\n \"name\": \"Standard_E4ds_v4\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 153600,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\ + \n },\r\n {\r\n \"name\": \"Standard_E8-2ds_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_E8-4ds_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_E8ds_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 307200,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_E16-4ds_v4\",\r\n \"\ + numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 614400,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E16-8ds_v4\",\r\n \ + \ \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \ + \ \"resourceDiskSizeInMB\": 614400,\r\n \"memoryInMB\": 131072,\r\n\ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E16ds_v4\"\ + ,\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 614400,\r\n \"memoryInMB\": 131072,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_E20ds_v4\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 768000,\r\n \"memoryInMB\"\ + : 163840,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_E32-8ds_v4\",\r\n \"numberOfCores\": 32,\r\n \ + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1228800,\r\ + \n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E32-16ds_v4\",\r\n \"numberOfCores\"\ + : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 1228800,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\"\ + : 32\r\n },\r\n {\r\n \"name\": \"Standard_E32ds_v4\",\r\n \ + \ \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 1228800,\r\n \"memoryInMB\": 262144,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E48ds_v4\"\ + ,\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 1843200,\r\n \"memoryInMB\": 393216,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_E64-16ds_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\"\ + : 516096,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_E64-32ds_v4\",\r\n \"numberOfCores\": 64,\r\n \ + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\ + \n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E64ds_v4\",\r\n \"numberOfCores\"\ + : 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 2457600,\r\n \"memoryInMB\": 516096,\r\n \"maxDataDiskCount\"\ + : 32\r\n },\r\n {\r\n \"name\": \"Standard_E80ids_v4\",\r\n \ + \ \"numberOfCores\": 80,\r\n \"osDiskSizeInMB\": 1047552,\r\n \ + \ \"resourceDiskSizeInMB\": 4362240,\r\n \"memoryInMB\": 516096,\r\n\ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D2d_v4\"\ + ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 76800,\r\n \"memoryInMB\": 8192,\r\n\ + \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4d_v4\"\ + ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 153600,\r\n \"memoryInMB\": 16384,\r\ + \n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8d_v4\"\ + ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 307200,\r\n \"memoryInMB\": 32768,\r\ + \n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"\ + Standard_D16d_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 614400,\r\n \"memoryInMB\"\ + : 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_D32d_v4\",\r\n \"numberOfCores\": 32,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1228800,\r\n\ + \ \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_D48d_v4\",\r\n \"numberOfCores\"\ + : 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\"\ + : 32\r\n },\r\n {\r\n \"name\": \"Standard_D64d_v4\",\r\n \ + \ \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\": 262144,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D2_v4\"\ + ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \ + \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4_v4\"\ + ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \ + \ \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8_v4\"\ + ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \ + \ \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D16_v4\"\ + ,\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D32_v4\"\ + ,\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D48_v4\"\ + ,\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64_v4\"\ + ,\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D2ds_v4\"\ + ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 76800,\r\n \"memoryInMB\": 8192,\r\n\ + \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4ds_v4\"\ + ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 153600,\r\n \"memoryInMB\": 16384,\r\ + \n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8ds_v4\"\ + ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 307200,\r\n \"memoryInMB\": 32768,\r\ + \n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"\ + Standard_D16ds_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 614400,\r\n \"memoryInMB\"\ + : 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_D32ds_v4\",\r\n \"numberOfCores\": 32,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1228800,\r\n\ + \ \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_D48ds_v4\",\r\n \"numberOfCores\"\ + : 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 1843200,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\"\ + : 32\r\n },\r\n {\r\n \"name\": \"Standard_D64ds_v4\",\r\n \ + \ \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\": 262144,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D2s_v4\"\ + ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 8192,\r\n \ + \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4s_v4\"\ + ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 16384,\r\n \ + \ \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8s_v4\"\ + ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 32768,\r\n \ + \ \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D16s_v4\"\ + ,\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 65536,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D32s_v4\"\ + ,\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 131072,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D48s_v4\"\ + ,\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 196608,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64s_v4\"\ + ,\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 0,\r\n \"memoryInMB\": 262144,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F2s_v2\"\ + ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 4096,\r\n\ + \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F4s_v2\"\ + ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 8192,\r\n\ + \ \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F8s_v2\"\ + ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 16384,\r\n\ + \ \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F16s_v2\"\ + ,\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 32768,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_F32s_v2\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\"\ + : 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_F48s_v2\",\r\n \"numberOfCores\": 48,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 393216,\r\n\ + \ \"memoryInMB\": 98304,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_F64s_v2\",\r\n \"numberOfCores\"\ + : 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 524288,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_F72s_v2\",\r\n \ + \ \"numberOfCores\": 72,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 589824,\r\n \"memoryInMB\": 147456,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D2a_v4\"\ + ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 8192,\r\n\ + \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4a_v4\"\ + ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 16384,\r\ + \n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8a_v4\"\ + ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 32768,\r\ + \n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"\ + Standard_D16a_v4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\"\ + : 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_D32a_v4\",\r\n \"numberOfCores\": 32,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n\ + \ \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_D48a_v4\",\r\n \"numberOfCores\"\ + : 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 1228800,\r\n \"memoryInMB\": 196608,\r\n \"maxDataDiskCount\"\ + : 32\r\n },\r\n {\r\n \"name\": \"Standard_D64a_v4\",\r\n \ + \ \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 1638400,\r\n \"memoryInMB\": 262144,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D96a_v4\"\ + ,\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 2457600,\r\n \"memoryInMB\": 393216,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_D2as_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\"\ + : 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ + : \"Standard_D4as_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ : 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\"\ : 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ - : \"Standard_D8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : \"Standard_D8as_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ : 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\"\ : 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ - name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"\ + name\": \"Standard_D16as_v4\",\r\n \"numberOfCores\": 16,\r\n \"\ osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n\ \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\ - \n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\"\ + \n {\r\n \"name\": \"Standard_D32as_v4\",\r\n \"numberOfCores\"\ : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\":\ - \ 32\r\n },\r\n {\r\n \"name\": \"Standard_D48s_v3\",\r\n \ - \ \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_D48as_v4\",\r\n \ + \ \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ resourceDiskSizeInMB\": 393216,\r\n \"memoryInMB\": 196608,\r\n \ - \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64s_v3\"\ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64as_v4\"\ ,\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ \ \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\ \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ - Standard_E2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ - : 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\"\ + Standard_D96as_v4\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\"\ + : 393216,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_E2a_v4\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\"\ : 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\"\ - : \"Standard_E4-2s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ - : 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\"\ - : 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ - : \"Standard_E4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ - : 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\"\ + : \"Standard_E4a_v4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\"\ : 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\"\ - : \"Standard_E8-2s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ - : 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\"\ + : \"Standard_E8a_v4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\"\ : 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"\ - name\": \"Standard_E8-4s_v3\",\r\n \"numberOfCores\": 8,\r\n \"\ - osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n\ - \ \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\ - \n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\"\ + name\": \"Standard_E16a_v4\",\r\n \"numberOfCores\": 16,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n\ + \ \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E20a_v4\",\r\n \"numberOfCores\"\ + : 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 512000,\r\n \"memoryInMB\": 163840,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E32a_v4\",\r\n \ + \ \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 262144,\r\n \ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E48a_v4\"\ + ,\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 1228800,\r\n \"memoryInMB\": 393216,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_E64a_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 1638400,\r\n \"memoryInMB\"\ + : 524288,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_E96a_v4\",\r\n \"numberOfCores\": 96,\r\n \"\ + osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2457600,\r\n\ + \ \"memoryInMB\": 688128,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E2as_v4\",\r\n \"numberOfCores\"\ + : 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\ + \n },\r\n {\r\n \"name\": \"Standard_E4-2as_v4\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\ + \n },\r\n {\r\n \"name\": \"Standard_E4as_v4\",\r\n \"numberOfCores\"\ + : 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\ + \n },\r\n {\r\n \"name\": \"Standard_E8-2as_v4\",\r\n \"numberOfCores\"\ : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\ - \n },\r\n {\r\n \"name\": \"Standard_E16-4s_v3\",\r\n \"numberOfCores\"\ - : 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + \n },\r\n {\r\n \"name\": \"Standard_E8-4as_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_E8as_v4\",\r\n \"numberOfCores\"\ + : 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\ + \n },\r\n {\r\n \"name\": \"Standard_E16-4as_v4\",\r\n \"\ + numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\":\ - \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E16-8s_v3\",\r\n \ - \ \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \ - \ \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\n \ - \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E16s_v3\"\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E16-8as_v4\",\r\n \ + \ \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \ + \ \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\n\ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E16as_v4\"\ ,\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ \ \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\ \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ - Standard_E20s_v3\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\"\ + Standard_E20as_v4\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\"\ : 1047552,\r\n \"resourceDiskSizeInMB\": 327680,\r\n \"memoryInMB\"\ : 163840,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ - name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": 32,\r\n \"\ - osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n\ - \ \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\ - \n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\"\ + name\": \"Standard_E32-8as_v4\",\r\n \"numberOfCores\": 32,\r\n \ + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\ + \n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E32-16as_v4\",\r\n \"numberOfCores\"\ : 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ : 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\":\ - \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \ - \ \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E32as_v4\",\r\n \ + \ \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"\ resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \ - \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS1\"\ - ,\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n\ - \ \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2\"\ - ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n\ - \ \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3\"\ - ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n\ - \ \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4\"\ - ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n\ - \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS11\"\ - ,\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n\ - \ \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12\"\ - ,\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n\ - \ \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13\"\ - ,\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ - \ \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E48as_v4\"\ + ,\r\n \"numberOfCores\": 48,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 786432,\r\n \"memoryInMB\": 393216,\r\ \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ - Standard_DS14\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\"\ - : 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\"\ - : 114688,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}" + Standard_E64-16as_v4\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\"\ + : 524288,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"\ + name\": \"Standard_E64-32as_v4\",\r\n \"numberOfCores\": 64,\r\n \ + \ \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\ + \n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\": 32\r\n },\r\ + \n {\r\n \"name\": \"Standard_E64as_v4\",\r\n \"numberOfCores\"\ + : 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\"\ + : 884736,\r\n \"memoryInMB\": 524288,\r\n \"maxDataDiskCount\":\ + \ 32\r\n },\r\n {\r\n \"name\": \"Standard_E96-24as_v4\",\r\n \ + \ \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n \ + \ \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\": 688128,\r\n\ + \ \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E96-48as_v4\"\ + ,\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\": 1047552,\r\n\ + \ \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\": 688128,\r\ + \n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"\ + Standard_E96as_v4\",\r\n \"numberOfCores\": 96,\r\n \"osDiskSizeInMB\"\ + : 1047552,\r\n \"resourceDiskSizeInMB\": 1376256,\r\n \"memoryInMB\"\ + : 688128,\r\n \"maxDataDiskCount\": 32\r\n }\r\n ]\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:01 GMT + date: Tue, 02 Feb 2021 08:31:21 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -1417,14 +1910,14 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/vmSizes?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/vmSizes?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions?api-version=2020-06-01 response: @@ -1441,7 +1934,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:01 GMT + date: Tue, 02 Feb 2021 08:31:21 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -1453,14 +1946,14 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/vmSizes?api-version=2020-06-01 response: @@ -2690,7 +3183,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:02 GMT + date: Tue, 02 Feb 2021 08:31:21 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -2709,7 +3202,7 @@ interactions: Accept: - application/json, text/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/runCommands?api-version=2020-06-01 response: @@ -2796,7 +3289,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:02 GMT + date: Tue, 02 Feb 2021 08:31:22 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -2815,35 +3308,36 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"830a6563-f966-45c3-a449-be7d9eb8016f\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eb633740-a822-4995-bc84-7775f07647d4\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Standard_LRS\",\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"myVM\",\r\n \"adminUsername\": \"testuser\",\r\ @@ -2857,11 +3351,11 @@ interactions: ,\r\n \"instanceView\": {\r\n \"computerName\": \"myVM\",\r\n \ \ \"osName\": \"Windows Server 2016 Datacenter\",\r\n \"osVersion\"\ : \"Microsoft Windows NT 10.0.14393.0\",\r\n \"vmAgent\": {\r\n \ - \ \"vmAgentVersion\": \"2.7.41491.1005\",\r\n \"statuses\": [\r\n\ + \ \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \"statuses\": [\r\n\ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n\ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"GuestAgent is running and processing the extensions.\"\ - ,\r\n \"time\": \"2021-01-19T07:58:53+00:00\"\r\n }\r\n\ + ,\r\n \"time\": \"2021-02-02T08:30:54+00:00\"\r\n }\r\n\ \ ],\r\n \"extensionHandlers\": [\r\n {\r\n \ \ \"type\": \"Microsoft.Azure.NetworkWatcher.NetworkWatcherAgentWindows\"\ ,\r\n \"typeHandlerVersion\": \"1.4.1693.1\",\r\n \"\ @@ -2873,18 +3367,18 @@ interactions: \ \"name\": \"myVMosdisk\",\r\n \"statuses\": [\r\n \ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T07:55:46.3795237+00:00\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T08:27:43.7283428+00:00\"\ \r\n }\r\n ]\r\n },\r\n {\r\n \"\ - name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T07:55:46.3795237+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + \ \"time\": \"2021-02-02T08:27:43.7283428+00:00\"\r\n }\r\ + \n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T07:55:46.3795237+00:00\"\r\n }\r\ + \ \"time\": \"2021-02-02T08:27:43.7283428+00:00\"\r\n }\r\ \n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n \ \ {\r\n \"name\": \"virtualmachineextensionxxx9a731234\",\r\n\ \ \"type\": \"Microsoft.Azure.NetworkWatcher.NetworkWatcherAgentWindows\"\ @@ -2897,7 +3391,7 @@ interactions: \ ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T07:58:55.8326505+00:00\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T08:31:03.7755208+00:00\"\ \r\n },\r\n {\r\n \"code\": \"PowerState/running\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\ \r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\ @@ -2913,7 +3407,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:02 GMT + date: Tue, 02 Feb 2021 08:31:22 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -2925,14 +3419,14 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?$expand=instanceView&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?$expand=instanceView&api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines?api-version=2020-06-01 response: @@ -2940,29 +3434,31 @@ interactions: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"virtualmachinexxx9a731234\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"830a6563-f966-45c3-a449-be7d9eb8016f\"\ - ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"imageReference\"\ - : {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \ - \ \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\",\r\n \"exactVersion\"\ - : \"14393.4104.2012040817\"\r\n },\r\n \"osDisk\": {\r\n\ - \ \"osType\": \"Windows\",\r\n \"name\": \"myVMosdisk\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\"\ - : \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"\ + eb633740-a822-4995-bc84-7775f07647d4\",\r\n \"hardwareProfile\": {\r\ + \n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"storageProfile\"\ + : {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ + ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"\ + 2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \ + \ \"exactVersion\": \"14393.4169.2101090332\"\r\n },\r\n \ + \ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"\ + name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\",\r\n\ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\ + \n \"storageAccountType\": \"Standard_LRS\",\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n\ \ \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\ - \n \"name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + \n \"name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\"\ : \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \ \ \"toBeDetached\": false\r\n },\r\n {\r\n \ - \ \"lun\": 1,\r\n \"name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + \ \"lun\": 1,\r\n \"name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\"\ : \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \ \ \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\ \n \"osProfile\": {\r\n \"computerName\": \"myVM\",\r\n \ @@ -2981,7 +3477,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:03 GMT + date: Tue, 02 Feb 2021 08:31:22 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -2993,44 +3489,46 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines?api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/virtualMachines?api-version=2020-06-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"virtualmachinexxx9a731234\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RN562ZDJEWJTKMV6SASPSM2NV3BZ3Z36T73ZNAOF6QJHCSZCPSICY3HVEDM5EYGWZZVDFOC6XWQ/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DI5GLXBMFGXIHFPKGD3YMBW3K3FFV7XU564356XIL5JN5KVHB3LMA3I57HWBMRXI2UMX7TCT4XC/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"830a6563-f966-45c3-a449-be7d9eb8016f\"\ - ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"imageReference\"\ - : {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \ - \ \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\",\r\n \"exactVersion\"\ - : \"14393.4104.2012040817\"\r\n },\r\n \"osDisk\": {\r\n\ - \ \"osType\": \"Windows\",\r\n \"name\": \"myVMosdisk\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\"\ - : \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"\ + eb633740-a822-4995-bc84-7775f07647d4\",\r\n \"hardwareProfile\": {\r\ + \n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"storageProfile\"\ + : {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ + ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"\ + 2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \ + \ \"exactVersion\": \"14393.4169.2101090332\"\r\n },\r\n \ + \ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"\ + name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\",\r\n\ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\ + \n \"storageAccountType\": \"Standard_LRS\",\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n\ \ \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\ - \n \"name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + \n \"name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\"\ : \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \ \ \"toBeDetached\": false\r\n },\r\n {\r\n \ - \ \"lun\": 1,\r\n \"name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + \ \"lun\": 1,\r\n \"name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\"\ : \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \ \ \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\ \n \"osProfile\": {\r\n \"computerName\": \"myVM\",\r\n \ @@ -3043,13 +3541,13 @@ interactions: :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234\"\ ,\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"\ Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RN562ZDJEWJTKMV6SASPSM2NV3BZ3Z36T73ZNAOF6QJHCSZCPSICY3HVEDM5EYGWZZVDFOC6XWQ/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DI5GLXBMFGXIHFPKGD3YMBW3K3FFV7XU564356XIL5JN5KVHB3LMA3I57HWBMRXI2UMX7TCT4XC/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234\"\ \r\n }\r\n ]\r\n }\r\n ]\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:03 GMT + date: Tue, 02 Feb 2021 08:31:23 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3068,37 +3566,39 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/virtualMachines?api-version=2020-06-01 response: body: string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"virtualmachinexxx9a731234\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RN562ZDJEWJTKMV6SASPSM2NV3BZ3Z36T73ZNAOF6QJHCSZCPSICY3HVEDM5EYGWZZVDFOC6XWQ/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DI5GLXBMFGXIHFPKGD3YMBW3K3FFV7XU564356XIL5JN5KVHB3LMA3I57HWBMRXI2UMX7TCT4XC/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"830a6563-f966-45c3-a449-be7d9eb8016f\"\ - ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\ - \r\n },\r\n \"storageProfile\": {\r\n \"imageReference\"\ - : {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \ - \ \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\",\r\n \"exactVersion\"\ - : \"14393.4104.2012040817\"\r\n },\r\n \"osDisk\": {\r\n\ - \ \"osType\": \"Windows\",\r\n \"name\": \"myVMosdisk\"\ - ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\"\ - : \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"\ + eb633740-a822-4995-bc84-7775f07647d4\",\r\n \"hardwareProfile\": {\r\ + \n \"vmSize\": \"Standard_D2_v2\"\r\n },\r\n \"storageProfile\"\ + : {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ + ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"\ + 2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \ + \ \"exactVersion\": \"14393.4169.2101090332\"\r\n },\r\n \ + \ \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"\ + name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\",\r\n\ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\ + \n \"storageAccountType\": \"Standard_LRS\",\r\n \ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n\ \ \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\ - \n \"name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + \n \"name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\"\ : \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \ \ \"toBeDetached\": false\r\n },\r\n {\r\n \ - \ \"lun\": 1,\r\n \"name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + \ \"lun\": 1,\r\n \"name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\"\ : \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\"\ - : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + : \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \ \ \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\ \n \"osProfile\": {\r\n \"computerName\": \"myVM\",\r\n \ @@ -3111,13 +3611,13 @@ interactions: :[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234\"\ ,\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"\ Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \ - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RN562ZDJEWJTKMV6SASPSM2NV3BZ3Z36T73ZNAOF6QJHCSZCPSICY3HVEDM5EYGWZZVDFOC6XWQ/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234\"\ + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/DI5GLXBMFGXIHFPKGD3YMBW3K3FFV7XU564356XIL5JN5KVHB3LMA3I57HWBMRXI2UMX7TCT4XC/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234\"\ \r\n }\r\n ]\r\n }\r\n ]\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:03 GMT + date: Tue, 02 Feb 2021 08:31:23 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3140,19 +3640,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/runCommand?api-version=2020-06-01 response: body: string: '' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d56d164f-3d55-4723-800c-eeb3b09c0d9d?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bb058b9-7369-4140-b799-727d04b2f6ee?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 07:59:04 GMT + date: Tue, 02 Feb 2021 08:31:24 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d56d164f-3d55-4723-800c-eeb3b09c0d9d?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bb058b9-7369-4140-b799-727d04b2f6ee?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains @@ -3162,58 +3662,31 @@ interactions: status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/runCommand?api-version=2020-06-01 -- request: - body: null - headers: - User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d56d164f-3d55-4723-800c-eeb3b09c0d9d?api-version=2020-06-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-01-19T07:59:04.6763508+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"d56d164f-3d55-4723-800c-eeb3b09c0d9d\"\ - \r\n}" - headers: - cache-control: no-cache - content-encoding: gzip - content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 07:59:34 GMT - expires: '-1' - pragma: no-cache - server: Microsoft-HTTPAPI/2.0 - strict-transport-security: max-age=31536000; includeSubDomains - transfer-encoding: chunked - vary: Accept-Encoding - x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29989 - status: - code: 200 - message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/d56d164f-3d55-4723-800c-eeb3b09c0d9d?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/runCommand?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d56d164f-3d55-4723-800c-eeb3b09c0d9d?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bb058b9-7369-4140-b799-727d04b2f6ee?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T07:59:04.6763508+00:00\",\r\n \"\ - endTime\": \"2021-01-19T07:59:45.0981545+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ComponentStatus/StdOut/succeeded\"\ - ,\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\"\ - :\"This is a sample script with parameters \"},{\"code\":\"ComponentStatus/StdErr/succeeded\"\ - ,\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\"\ - :\"\"}]}\r\n },\r\n \"name\": \"d56d164f-3d55-4723-800c-eeb3b09c0d9d\"\r\ - \n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:31:24.619303+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:31:55.1505882+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\ + \n \"code\": \"ComponentStatus/StdOut/succeeded\",\r\n \"level\"\ + : \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \ + \ \"message\": \"This is a sample script with parameters \"\r\n },\r\ + \n {\r\n \"code\": \"ComponentStatus/StdErr/succeeded\",\r\n \ + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ + ,\r\n \"message\": \"\"\r\n }\r\n ]\r\n}\r\n },\r\n \"name\": \"\ + 6bb058b9-7369-4140-b799-727d04b2f6ee\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:00:05 GMT + date: Tue, 02 Feb 2021 08:31:55 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3221,18 +3694,18 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29986 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29989 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/d56d164f-3d55-4723-800c-eeb3b09c0d9d?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/6bb058b9-7369-4140-b799-727d04b2f6ee?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d56d164f-3d55-4723-800c-eeb3b09c0d9d?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6bb058b9-7369-4140-b799-727d04b2f6ee?monitor=true&api-version=2020-06-01 response: body: string: '{"value":[{"code":"ComponentStatus/StdOut/succeeded","level":"Info","displayStatus":"Provisioning @@ -3242,7 +3715,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:00:06 GMT + date: Tue, 02 Feb 2021 08:31:56 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3250,55 +3723,55 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29985 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29988 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/d56d164f-3d55-4723-800c-eeb3b09c0d9d?monitor=true&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/6bb058b9-7369-4140-b799-727d04b2f6ee?monitor=true&api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/restart?api-version=2020-06-01 response: body: string: '' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6494260d-7e47-467d-8371-ba7526cbeb63?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/52bd61b1-cb09-4878-a92a-81f9789a4e14?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:00:07 GMT + date: Tue, 02 Feb 2021 08:31:56 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6494260d-7e47-467d-8371-ba7526cbeb63?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/52bd61b1-cb09-4878-a92a-81f9789a4e14?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1197 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: '1199' status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/restart?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/restart?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6494260d-7e47-467d-8371-ba7526cbeb63?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/52bd61b1-cb09-4878-a92a-81f9789a4e14?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:00:07.0982527+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:00:09.5826712+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"6494260d-7e47-467d-8371-ba7526cbeb63\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:31:56.3537253+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:31:56.6505991+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"52bd61b1-cb09-4878-a92a-81f9789a4e14\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:00:39 GMT + date: Tue, 02 Feb 2021 08:32:26 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3306,79 +3779,79 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29983 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29985 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/6494260d-7e47-467d-8371-ba7526cbeb63?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/52bd61b1-cb09-4878-a92a-81f9789a4e14?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6494260d-7e47-467d-8371-ba7526cbeb63?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/52bd61b1-cb09-4878-a92a-81f9789a4e14?monitor=true&api-version=2020-06-01 response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:00:39 GMT + date: Tue, 02 Feb 2021 08:32:27 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29982 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29984 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/6494260d-7e47-467d-8371-ba7526cbeb63?monitor=true&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/52bd61b1-cb09-4878-a92a-81f9789a4e14?monitor=true&api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/powerOff?skipShutdown=false&api-version=2020-06-01 response: body: string: '' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/792aad65-44ab-4426-a537-f021abbea69b?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9c90bd75-0e37-4a87-8264-2d01df93ab3c?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:00:39 GMT + date: Tue, 02 Feb 2021 08:32:27 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/792aad65-44ab-4426-a537-f021abbea69b?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9c90bd75-0e37-4a87-8264-2d01df93ab3c?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1196 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196 x-ms-ratelimit-remaining-subscription-writes: '1199' status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/powerOff?skipShutdown=false&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/powerOff?skipShutdown=false&api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/792aad65-44ab-4426-a537-f021abbea69b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9c90bd75-0e37-4a87-8264-2d01df93ab3c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:00:40.0980759+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:00:54.3320488+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"792aad65-44ab-4426-a537-f021abbea69b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:32:28.1498659+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:32:30.9936955+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"9c90bd75-0e37-4a87-8264-2d01df93ab3c\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:01:11 GMT + date: Tue, 02 Feb 2021 08:32:58 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3386,52 +3859,52 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29980 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29982 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/792aad65-44ab-4426-a537-f021abbea69b?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9c90bd75-0e37-4a87-8264-2d01df93ab3c?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/792aad65-44ab-4426-a537-f021abbea69b?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9c90bd75-0e37-4a87-8264-2d01df93ab3c?monitor=true&api-version=2020-06-01 response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:01:11 GMT + date: Tue, 02 Feb 2021 08:32:59 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29979 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29981 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/792aad65-44ab-4426-a537-f021abbea69b?monitor=true&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9c90bd75-0e37-4a87-8264-2d01df93ab3c?monitor=true&api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/start?api-version=2020-06-01 response: body: string: '' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6d7f29e9-1c2a-402a-bd3c-10717d938c0a?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee190a9b-306d-4a00-8c90-4801a0414986?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:01:11 GMT + date: Tue, 02 Feb 2021 08:32:59 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6d7f29e9-1c2a-402a-bd3c-10717d938c0a?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee190a9b-306d-4a00-8c90-4801a0414986?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains @@ -3441,24 +3914,24 @@ interactions: status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/start?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/start?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6d7f29e9-1c2a-402a-bd3c-10717d938c0a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee190a9b-306d-4a00-8c90-4801a0414986?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:01:11.7386797+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:01:14.9417921+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"6d7f29e9-1c2a-402a-bd3c-10717d938c0a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:32:59.7911704+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:33:09.5725074+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"ee190a9b-306d-4a00-8c90-4801a0414986\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:01:22 GMT + date: Tue, 02 Feb 2021 08:33:09 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3466,35 +3939,35 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29978 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/6d7f29e9-1c2a-402a-bd3c-10717d938c0a?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/ee190a9b-306d-4a00-8c90-4801a0414986?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6d7f29e9-1c2a-402a-bd3c-10717d938c0a?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ee190a9b-306d-4a00-8c90-4801a0414986?monitor=true&api-version=2020-06-01 response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:01:22 GMT + date: Tue, 02 Feb 2021 08:33:10 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29977 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29979 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/6d7f29e9-1c2a-402a-bd3c-10717d938c0a?monitor=true&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/ee190a9b-306d-4a00-8c90-4801a0414986?monitor=true&api-version=2020-06-01 - request: body: '{"properties": {"autoUpgradeMinorVersion": true}}' headers: @@ -3505,7 +3978,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 response: @@ -3518,11 +3991,11 @@ interactions: \ \"Microsoft.Azure.NetworkWatcher\",\r\n \"type\": \"NetworkWatcherAgentWindows\"\ ,\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}" headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b009fe19-ecd9-441a-bdbe-5820cc6e77bd?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1f4cadf5-f328-4463-9fce-22c24a948926?api-version=2020-06-01 cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:01:22 GMT + date: Tue, 02 Feb 2021 08:33:10 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3531,28 +4004,28 @@ interactions: vary: Accept-Encoding x-content-type-options: nosniff x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1194 - x-ms-ratelimit-remaining-subscription-writes: '1198' + x-ms-ratelimit-remaining-subscription-writes: '1199' status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b009fe19-ecd9-441a-bdbe-5820cc6e77bd?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/1f4cadf5-f328-4463-9fce-22c24a948926?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:01:22.8949998+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:01:23.0981058+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"b009fe19-ecd9-441a-bdbe-5820cc6e77bd\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:33:10.9943707+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:33:11.2131296+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"1f4cadf5-f328-4463-9fce-22c24a948926\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:01:53 GMT + date: Tue, 02 Feb 2021 08:33:42 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3560,16 +4033,16 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29975 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/b009fe19-ecd9-441a-bdbe-5820cc6e77bd?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/1f4cadf5-f328-4463-9fce-22c24a948926?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 response: @@ -3585,7 +4058,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:01:53 GMT + date: Tue, 02 Feb 2021 08:33:42 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3597,12 +4070,12 @@ interactions: status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 response: @@ -3610,12 +4083,12 @@ interactions: string: '' headers: azure-asyncnotification: Enabled - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b139c4a1-2710-4947-bb12-872e6167bfc7?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9b6f2071-7f9b-435f-8ca1-618be0487c35?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:01:54 GMT + date: Tue, 02 Feb 2021 08:33:43 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b139c4a1-2710-4947-bb12-872e6167bfc7?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9b6f2071-7f9b-435f-8ca1-618be0487c35?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains @@ -3625,24 +4098,24 @@ interactions: status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/extensions/virtualmachineextensionxxx9a731234?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b139c4a1-2710-4947-bb12-872e6167bfc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9b6f2071-7f9b-435f-8ca1-618be0487c35?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:01:55.2387925+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"b139c4a1-2710-4947-bb12-872e6167bfc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:33:43.322626+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"9b6f2071-7f9b-435f-8ca1-618be0487c35\"\ \r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:02:26 GMT + date: Tue, 02 Feb 2021 08:34:13 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3650,28 +4123,28 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29974 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29976 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/b139c4a1-2710-4947-bb12-872e6167bfc7?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9b6f2071-7f9b-435f-8ca1-618be0487c35?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b139c4a1-2710-4947-bb12-872e6167bfc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9b6f2071-7f9b-435f-8ca1-618be0487c35?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:01:55.2387925+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:02:35.6607672+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"b139c4a1-2710-4947-bb12-872e6167bfc7\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:33:43.322626+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:34:33.8547258+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"9b6f2071-7f9b-435f-8ca1-618be0487c35\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:02:57 GMT + date: Tue, 02 Feb 2021 08:34:44 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3679,55 +4152,55 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29972 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29974 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/b139c4a1-2710-4947-bb12-872e6167bfc7?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9b6f2071-7f9b-435f-8ca1-618be0487c35?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/powerOff?skipShutdown=false&api-version=2020-06-01 response: body: string: '' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/301830da-f0a6-4d1c-a00c-dfd3c2bc7c13?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c59e5a81-6e56-46b8-b308-d1cfa24e30be?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:02:58 GMT + date: Tue, 02 Feb 2021 08:34:44 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/301830da-f0a6-4d1c-a00c-dfd3c2bc7c13?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c59e5a81-6e56-46b8-b308-d1cfa24e30be?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1192 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1192 x-ms-ratelimit-remaining-subscription-writes: '1199' status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/powerOff?skipShutdown=false&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/powerOff?skipShutdown=false&api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/301830da-f0a6-4d1c-a00c-dfd3c2bc7c13?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c59e5a81-6e56-46b8-b308-d1cfa24e30be?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:02:58.2075982+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:03:14.0357319+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"301830da-f0a6-4d1c-a00c-dfd3c2bc7c13\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:34:45.5893902+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:34:55.0739071+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"c59e5a81-6e56-46b8-b308-d1cfa24e30be\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:03:28 GMT + date: Tue, 02 Feb 2021 08:35:15 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3735,81 +4208,81 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29970 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29972 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/301830da-f0a6-4d1c-a00c-dfd3c2bc7c13?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/c59e5a81-6e56-46b8-b308-d1cfa24e30be?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/301830da-f0a6-4d1c-a00c-dfd3c2bc7c13?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c59e5a81-6e56-46b8-b308-d1cfa24e30be?monitor=true&api-version=2020-06-01 response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:03:28 GMT + date: Tue, 02 Feb 2021 08:35:15 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29969 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29971 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/301830da-f0a6-4d1c-a00c-dfd3c2bc7c13?monitor=true&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/c59e5a81-6e56-46b8-b308-d1cfa24e30be?monitor=true&api-version=2020-06-01 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/reapply?api-version=2020-06-01 response: body: string: '' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/acda1bdb-0871-4a0e-a9f8-bdc8e4461693?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8a8b97c5-3866-4eb9-885a-a7fb12763aec?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:03:29 GMT + date: Tue, 02 Feb 2021 08:35:16 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/acda1bdb-0871-4a0e-a9f8-bdc8e4461693?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8a8b97c5-3866-4eb9-885a-a7fb12763aec?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1191 - x-ms-ratelimit-remaining-subscription-writes: '1199' + x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1191 + x-ms-ratelimit-remaining-subscription-writes: '1198' status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/reapply?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/reapply?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/acda1bdb-0871-4a0e-a9f8-bdc8e4461693?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8a8b97c5-3866-4eb9-885a-a7fb12763aec?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:03:29.8014024+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:03:31.2857688+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"acda1bdb-0871-4a0e-a9f8-bdc8e4461693\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:35:17.2146653+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:35:18.8084504+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"8a8b97c5-3866-4eb9-885a-a7fb12763aec\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:04:00 GMT + date: Tue, 02 Feb 2021 08:35:47 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3817,79 +4290,137 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29967 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29969 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/acda1bdb-0871-4a0e-a9f8-bdc8e4461693?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/8a8b97c5-3866-4eb9-885a-a7fb12763aec?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/acda1bdb-0871-4a0e-a9f8-bdc8e4461693?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8a8b97c5-3866-4eb9-885a-a7fb12763aec?monitor=true&api-version=2020-06-01 response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:04:01 GMT + date: Tue, 02 Feb 2021 08:35:48 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29966 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29968 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/acda1bdb-0871-4a0e-a9f8-bdc8e4461693?monitor=true&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/8a8b97c5-3866-4eb9-885a-a7fb12763aec?monitor=true&api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/redeploy?api-version=2020-06-01 response: body: string: '' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/95632dec-9083-4145-86e1-c625c178abd3?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:04:01 GMT + date: Tue, 02 Feb 2021 08:35:48 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/95632dec-9083-4145-86e1-c625c178abd3?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1190 - x-ms-ratelimit-remaining-subscription-writes: '1199' + x-ms-ratelimit-remaining-resource: Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1190 + x-ms-ratelimit-remaining-subscription-writes: '1198' status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/redeploy?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/redeploy?api-version=2020-06-01 +- request: + body: null + headers: + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T08:35:48.9021149+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"9789c651-f5c1-4dfd-a4ee-3052847f8a0c\"\ + \r\n}" + headers: + cache-control: no-cache + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Tue, 02 Feb 2021 08:36:20 GMT + expires: '-1' + pragma: no-cache + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000; includeSubDomains + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29966 + status: + code: 200 + message: OK + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 +- request: + body: null + headers: + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T08:35:48.9021149+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"9789c651-f5c1-4dfd-a4ee-3052847f8a0c\"\ + \r\n}" + headers: + cache-control: no-cache + content-encoding: gzip + content-type: application/json; charset=utf-8 + date: Tue, 02 Feb 2021 08:36:51 GMT + expires: '-1' + pragma: no-cache + server: Microsoft-HTTPAPI/2.0 + strict-transport-security: max-age=31536000; includeSubDomains + transfer-encoding: chunked + vary: Accept-Encoding + x-content-type-options: nosniff + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29963 + status: + code: 200 + message: OK + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/95632dec-9083-4145-86e1-c625c178abd3?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:04:01.7389934+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"95632dec-9083-4145-86e1-c625c178abd3\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:35:48.9021149+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"9789c651-f5c1-4dfd-a4ee-3052847f8a0c\"\ \r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:04:32 GMT + date: Tue, 02 Feb 2021 08:37:21 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3897,28 +4428,28 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29964 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29960 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/95632dec-9083-4145-86e1-c625c178abd3?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/95632dec-9083-4145-86e1-c625c178abd3?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:04:01.7389934+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:04:33.5672317+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"95632dec-9083-4145-86e1-c625c178abd3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:35:48.9021149+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:37:34.8554132+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"9789c651-f5c1-4dfd-a4ee-3052847f8a0c\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:05:04 GMT + date: Tue, 02 Feb 2021 08:37:52 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -3926,35 +4457,35 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29962 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29957 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/95632dec-9083-4145-86e1-c625c178abd3?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/95632dec-9083-4145-86e1-c625c178abd3?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?monitor=true&api-version=2020-06-01 response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:05:04 GMT + date: Tue, 02 Feb 2021 08:37:52 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29961 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29956 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/95632dec-9083-4145-86e1-c625c178abd3?monitor=true&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/9789c651-f5c1-4dfd-a4ee-3052847f8a0c?monitor=true&api-version=2020-06-01 - request: body: '{"properties": {"networkProfile": {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacexxx9a731234", "properties": {"primary": true}}]}}}' @@ -3966,35 +4497,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"830a6563-f966-45c3-a449-be7d9eb8016f\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eb633740-a822-4995-bc84-7775f07647d4\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Standard_LRS\",\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"myVM\",\r\n \"adminUsername\": \"testuser\",\r\ @@ -4008,11 +4540,11 @@ interactions: \r\n }\r\n}" headers: azure-asyncnotification: Enabled - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cae83431-d056-4c03-980d-b96bcba61a56?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff515478-5f98-43ce-8987-3f7585ffd2c3?api-version=2020-06-01 cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:05:11 GMT + date: Tue, 02 Feb 2021 08:37:57 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -4021,28 +4553,28 @@ interactions: vary: Accept-Encoding x-content-type-options: nosniff x-ms-ratelimit-remaining-resource: Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1196 - x-ms-ratelimit-remaining-subscription-writes: '1197' + x-ms-ratelimit-remaining-subscription-writes: '1198' status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cae83431-d056-4c03-980d-b96bcba61a56?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff515478-5f98-43ce-8987-3f7585ffd2c3?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:05:08.0516576+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:05:08.3485309+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"cae83431-d056-4c03-980d-b96bcba61a56\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:37:55.12111+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:37:55.2929159+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"ff515478-5f98-43ce-8987-3f7585ffd2c3\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:05:42 GMT + date: Tue, 02 Feb 2021 08:38:29 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -4050,44 +4582,45 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29959 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29954 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/cae83431-d056-4c03-980d-b96bcba61a56?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/ff515478-5f98-43ce-8987-3f7585ffd2c3?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinexxx9a731234\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"830a6563-f966-45c3-a449-be7d9eb8016f\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"eb633740-a822-4995-bc84-7775f07647d4\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Standard_LRS\",\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_94c44223790e4a9d90961ddca65acfe9\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk2_5e5f22bd99c746ac823d467772e734bf\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + name\": \"virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_be939f4afa0041f08d4b1c25166c180b\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinexxx9a731234_disk3_ea5d26564aa94f97919b95f35e60911a\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"myVM\",\r\n \"adminUsername\": \"testuser\",\r\ @@ -4103,7 +4636,7 @@ interactions: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:05:42 GMT + date: Tue, 02 Feb 2021 08:38:29 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -4111,55 +4644,55 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31984 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31982 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/deallocate?api-version=2020-06-01 response: body: string: '' headers: - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/266bc7fd-bc29-4e29-bf52-3f344fa04d18?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/06056802-fc8b-4b21-83e7-2ea59dfeeadd?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:05:43 GMT + date: Tue, 02 Feb 2021 08:38:29 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/266bc7fd-bc29-4e29-bf52-3f344fa04d18?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/06056802-fc8b-4b21-83e7-2ea59dfeeadd?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff x-ms-ratelimit-remaining-resource: Microsoft.Compute/DeleteVM3Min;239,Microsoft.Compute/DeleteVM30Min;1198 - x-ms-ratelimit-remaining-subscription-writes: '1199' + x-ms-ratelimit-remaining-subscription-writes: '1197' status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/deallocate?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234/deallocate?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/266bc7fd-bc29-4e29-bf52-3f344fa04d18?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/06056802-fc8b-4b21-83e7-2ea59dfeeadd?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:05:43.1609835+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"266bc7fd-bc29-4e29-bf52-3f344fa04d18\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:38:30.4336324+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"06056802-fc8b-4b21-83e7-2ea59dfeeadd\"\ \r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:05:53 GMT + date: Tue, 02 Feb 2021 08:38:40 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -4167,28 +4700,28 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29958 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29953 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/266bc7fd-bc29-4e29-bf52-3f344fa04d18?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/06056802-fc8b-4b21-83e7-2ea59dfeeadd?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/266bc7fd-bc29-4e29-bf52-3f344fa04d18?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/06056802-fc8b-4b21-83e7-2ea59dfeeadd?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:05:43.1609835+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:06:10.5359725+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"266bc7fd-bc29-4e29-bf52-3f344fa04d18\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:38:30.4336324+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:39:12.2305069+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"06056802-fc8b-4b21-83e7-2ea59dfeeadd\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:06:30 GMT + date: Tue, 02 Feb 2021 08:39:17 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -4196,40 +4729,40 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29955 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29949 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/266bc7fd-bc29-4e29-bf52-3f344fa04d18?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/06056802-fc8b-4b21-83e7-2ea59dfeeadd?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/266bc7fd-bc29-4e29-bf52-3f344fa04d18?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/06056802-fc8b-4b21-83e7-2ea59dfeeadd?monitor=true&api-version=2020-06-01 response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:06:30 GMT + date: Tue, 02 Feb 2021 08:39:17 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29954 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29948 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/266bc7fd-bc29-4e29-bf52-3f344fa04d18?monitor=true&api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/06056802-fc8b-4b21-83e7-2ea59dfeeadd?monitor=true&api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 response: @@ -4237,12 +4770,12 @@ interactions: string: '' headers: azure-asyncnotification: Enabled - azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9b2d785-43a4-4c2c-8995-787e203144e4?api-version=2020-06-01 + azure-asyncoperation: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16940b43-87f7-42c2-a7ce-04c45e185ba6?api-version=2020-06-01 cache-control: no-cache content-length: '0' - date: Tue, 19 Jan 2021 08:06:31 GMT + date: Tue, 02 Feb 2021 08:39:18 GMT expires: '-1' - location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9b2d785-43a4-4c2c-8995-787e203144e4?monitor=true&api-version=2020-06-01 + location: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16940b43-87f7-42c2-a7ce-04c45e185ba6?monitor=true&api-version=2020-06-01 pragma: no-cache server: Microsoft-HTTPAPI/2.0 strict-transport-security: max-age=31536000; includeSubDomains @@ -4252,24 +4785,24 @@ interactions: status: code: 202 message: Accepted - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/rn562zdjewjtkmv6saspsm2nv3bz3z36t73znaof6qjhcszcpsicy3hvedm5eygwzzvdfoc6xwq/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/di5glxbmfgxihfpkgd3ymbw3k3ffv7xu564356xil5jn5kvhb3lma3i57hwbmrxi2umx7tct4xc/providers/Microsoft.Compute/virtualMachines/virtualmachinexxx9a731234?api-version=2020-06-01 - request: body: null headers: User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e9b2d785-43a4-4c2c-8995-787e203144e4?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16940b43-87f7-42c2-a7ce-04c45e185ba6?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:06:31.3484132+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:06:31.7702817+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"e9b2d785-43a4-4c2c-8995-787e203144e4\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:39:18.6367203+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:39:19.0898153+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"16940b43-87f7-42c2-a7ce-04c45e185ba6\"\r\n}" headers: cache-control: no-cache content-encoding: gzip content-type: application/json; charset=utf-8 - date: Tue, 19 Jan 2021 08:06:41 GMT + date: Tue, 02 Feb 2021 08:39:28 GMT expires: '-1' pragma: no-cache server: Microsoft-HTTPAPI/2.0 @@ -4277,9 +4810,9 @@ interactions: transfer-encoding: chunked vary: Accept-Encoding x-content-type-options: nosniff - x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29952 + x-ms-ratelimit-remaining-resource: Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29946 status: code: 200 message: OK - url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/e9b2d785-43a4-4c2c-8995-787e203144e4?api-version=2020-06-01 + url: https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/providers/Microsoft.Compute/locations/eastus/operations/16940b43-87f7-42c2-a7ce-04c45e185ba6?api-version=2020-06-01 version: 1 diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_dedicated_hosts.test_dedicated_hosts.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_dedicated_hosts.test_dedicated_hosts.yaml index 7046be2fa88c..c1ff32a3393d 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_dedicated_hosts.test_dedicated_hosts.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_dedicated_hosts.test_dedicated_hosts.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b?api-version=2020-06-01 response: body: - string: "{\r\n \"name\": \"hostgroup640e162b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SZF2SKNLWG7O65WCEKCPCZCKTKTVAVYGXPMEZ6KDSDIXPL6U2MJXVFQCBKQQGEH3RAPL4FMKXTR/providers/Microsoft.Compute/hostGroups/hostgroup640e162b\"\ + string: "{\r\n \"name\": \"hostgroup640e162b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/7MPA44WC6HSB5HFFZMBZSJGGVFFJBTDHUQ5RKG2PQBNQ75J2PZRBEDBA4EO2X6QZLUOBZ27Y3L3/providers/Microsoft.Compute/hostGroups/hostgroup640e162b\"\ ,\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {\r\n \"department\": \"finance\"\r\n },\r\n \"zones\"\ : [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\"\ @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:06:59 GMT + - Tue, 02 Feb 2021 08:39:49 GMT expires: - '-1' pragma: @@ -47,7 +47,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutDeleteDedicatedHost3Min;119,Microsoft.Compute/PutDeleteDedicatedHost30Min;599 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -66,7 +66,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b/hosts/hostname640e162b?api-version=2020-06-01 response: @@ -76,13 +76,13 @@ interactions: : \"eastus\",\r\n \"tags\": {\r\n \"department\": \"HR\"\r\n },\r\n \ \ \"sku\": {\r\n \"name\": \"DSv3-Type1\"\r\n },\r\n \"properties\":\ \ {\r\n \"platformFaultDomain\": 1,\r\n \"autoReplaceOnFailure\": true,\r\ - \n \"hostId\": \"f69851a6-aa1e-4f65-939b-c3981e07c68f\",\r\n \"provisioningState\"\ + \n \"hostId\": \"ec0edb29-c9aa-452a-b1ea-e5c8fe83b4c9\",\r\n \"provisioningState\"\ : \"Creating\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6973e670-bacb-45b1-9e59-193145fffeb1?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/450a2b68-2da2-4b2a-be6e-e66b90eeda34?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:07:03 GMT + - Tue, 02 Feb 2021 08:39:54 GMT expires: - '-1' pragma: @@ -105,7 +105,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutDeleteDedicatedHost3Min;118,Microsoft.Compute/PutDeleteDedicatedHost30Min;598 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -119,14 +119,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6973e670-bacb-45b1-9e59-193145fffeb1?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/450a2b68-2da2-4b2a-be6e-e66b90eeda34?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:07:02.3172584+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:07:07.7860494+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"6973e670-bacb-45b1-9e59-193145fffeb1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:39:54.1524887+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:39:54.7462327+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"450a2b68-2da2-4b2a-be6e-e66b90eeda34\"\r\n}" headers: cache-control: - no-cache @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:07:33 GMT + - Tue, 02 Feb 2021 08:40:25 GMT expires: - '-1' pragma: @@ -152,7 +152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29950 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29944 status: code: 200 message: OK @@ -166,7 +166,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b/hosts/hostname640e162b?api-version=2020-06-01 response: @@ -176,8 +176,8 @@ interactions: : \"eastus\",\r\n \"tags\": {\r\n \"department\": \"HR\"\r\n },\r\n \ \ \"sku\": {\r\n \"name\": \"DSv3-Type1\"\r\n },\r\n \"properties\":\ \ {\r\n \"platformFaultDomain\": 1,\r\n \"autoReplaceOnFailure\": true,\r\ - \n \"hostId\": \"f69851a6-aa1e-4f65-939b-c3981e07c68f\",\r\n \"virtualMachines\"\ - : [],\r\n \"provisioningTime\": \"2021-01-19T08:07:06.0516674+00:00\",\r\ + \n \"hostId\": \"ec0edb29-c9aa-452a-b1ea-e5c8fe83b4c9\",\r\n \"virtualMachines\"\ + : [],\r\n \"provisioningTime\": \"2021-02-02T08:39:54.6056063+00:00\",\r\ \n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -187,7 +187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:07:33 GMT + - Tue, 02 Feb 2021 08:40:25 GMT expires: - '-1' pragma: @@ -218,19 +218,19 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b?$expand=instanceView&api-version=2020-06-01 response: body: - string: "{\r\n \"name\": \"hostgroup640e162b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SZF2SKNLWG7O65WCEKCPCZCKTKTVAVYGXPMEZ6KDSDIXPL6U2MJXVFQCBKQQGEH3RAPL4FMKXTR/providers/Microsoft.Compute/hostGroups/hostgroup640e162b\"\ + string: "{\r\n \"name\": \"hostgroup640e162b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/7MPA44WC6HSB5HFFZMBZSJGGVFFJBTDHUQ5RKG2PQBNQ75J2PZRBEDBA4EO2X6QZLUOBZ27Y3L3/providers/Microsoft.Compute/hostGroups/hostgroup640e162b\"\ ,\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {\r\n \"department\": \"finance\"\r\n },\r\n \"zones\"\ : [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\"\ - : 3,\r\n \"hosts\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SZF2SKNLWG7O65WCEKCPCZCKTKTVAVYGXPMEZ6KDSDIXPL6U2MJXVFQCBKQQGEH3RAPL4FMKXTR/providers/Microsoft.Compute/hostGroups/HOSTGROUP640E162B/hosts/HOSTNAME640E162B\"\ + : 3,\r\n \"hosts\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/7MPA44WC6HSB5HFFZMBZSJGGVFFJBTDHUQ5RKG2PQBNQ75J2PZRBEDBA4EO2X6QZLUOBZ27Y3L3/providers/Microsoft.Compute/hostGroups/HOSTGROUP640E162B/hosts/HOSTNAME640E162B\"\ \r\n }\r\n ],\r\n \"supportAutomaticPlacement\": false,\r\n \ \ \"instanceView\": {\r\n \"hosts\": [\r\n {\r\n \"name\"\ - : \"hostname640e162b\",\r\n \"assetId\": \"39ccd12e-6903-494d-9e60-290ceb764e80\"\ + : \"hostname640e162b\",\r\n \"assetId\": \"59d70eae-cbff-4ce5-b695-8b7e4e00fdee\"\ ,\r\n \"availableCapacity\": {\r\n \"allocatableVMs\"\ : [\r\n {\r\n \"vmSize\": \"Standard_D2s_v3\"\ ,\r\n \"count\": 32\r\n },\r\n {\r\ @@ -247,20 +247,20 @@ interactions: \ },\r\n \"statuses\": [\r\n {\r\n \"\ code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T08:07:06.0985647+00:00\"\r\n \ - \ },\r\n {\r\n \"code\": \"HealthState/available\"\ - ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ - : \"Host available\"\r\n }\r\n ]\r\n }\r\n \ - \ ]\r\n }\r\n }\r\n}" + \ \"time\": \"2021-02-02T08:39:54.636868+00:00\"\r\n },\r\ + \n {\r\n \"code\": \"HealthState/available\",\r\n\ + \ \"level\": \"Info\",\r\n \"displayStatus\": \"\ + Host available\"\r\n }\r\n ]\r\n }\r\n ]\r\ + \n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2251' + - '2250' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:07:34 GMT + - Tue, 02 Feb 2021 08:40:25 GMT expires: - '-1' pragma: @@ -291,7 +291,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b/hosts/hostname640e162b?$expand=instanceView&api-version=2020-06-01 response: @@ -301,10 +301,10 @@ interactions: : \"eastus\",\r\n \"tags\": {\r\n \"department\": \"HR\"\r\n },\r\n \ \ \"sku\": {\r\n \"name\": \"DSv3-Type1\"\r\n },\r\n \"properties\":\ \ {\r\n \"platformFaultDomain\": 1,\r\n \"autoReplaceOnFailure\": true,\r\ - \n \"hostId\": \"f69851a6-aa1e-4f65-939b-c3981e07c68f\",\r\n \"virtualMachines\"\ - : [],\r\n \"provisioningTime\": \"2021-01-19T08:07:06.0516674+00:00\",\r\ + \n \"hostId\": \"ec0edb29-c9aa-452a-b1ea-e5c8fe83b4c9\",\r\n \"virtualMachines\"\ + : [],\r\n \"provisioningTime\": \"2021-02-02T08:39:54.6056063+00:00\",\r\ \n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n\ - \ \"assetId\": \"39ccd12e-6903-494d-9e60-290ceb764e80\",\r\n \"\ + \ \"assetId\": \"59d70eae-cbff-4ce5-b695-8b7e4e00fdee\",\r\n \"\ availableCapacity\": {\r\n \"allocatableVMs\": [\r\n {\r\n\ \ \"vmSize\": \"Standard_D2s_v3\",\r\n \"count\": 32\r\ \n },\r\n {\r\n \"vmSize\": \"Standard_D4s_v3\"\ @@ -319,19 +319,19 @@ interactions: \ ]\r\n },\r\n \"statuses\": [\r\n {\r\n \"\ code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T08:07:06.0985647+00:00\"\r\n },\r\n \ - \ {\r\n \"code\": \"HealthState/available\",\r\n \"level\"\ + \ \"time\": \"2021-02-02T08:39:54.636868+00:00\"\r\n },\r\n \ + \ {\r\n \"code\": \"HealthState/available\",\r\n \"level\"\ : \"Info\",\r\n \"displayStatus\": \"Host available\"\r\n \ \ }\r\n ]\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1908' + - '1907' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:07:34 GMT + - Tue, 02 Feb 2021 08:40:26 GMT expires: - '-1' pragma: @@ -367,12 +367,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b?api-version=2020-06-01 response: body: - string: "{\r\n \"name\": \"hostgroup640e162b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SZF2SKNLWG7O65WCEKCPCZCKTKTVAVYGXPMEZ6KDSDIXPL6U2MJXVFQCBKQQGEH3RAPL4FMKXTR/providers/Microsoft.Compute/hostGroups/hostgroup640e162b\"\ + string: "{\r\n \"name\": \"hostgroup640e162b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/7MPA44WC6HSB5HFFZMBZSJGGVFFJBTDHUQ5RKG2PQBNQ75J2PZRBEDBA4EO2X6QZLUOBZ27Y3L3/providers/Microsoft.Compute/hostGroups/hostgroup640e162b\"\ ,\r\n \"type\": \"Microsoft.Compute/hostGroups\",\r\n \"location\": \"eastus\"\ ,\r\n \"tags\": {\r\n \"department\": \"finance\"\r\n },\r\n \"zones\"\ : [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"platformFaultDomainCount\"\ @@ -385,7 +385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:07:36 GMT + - Tue, 02 Feb 2021 08:40:29 GMT expires: - '-1' pragma: @@ -404,7 +404,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutDeleteDedicatedHost3Min;117,Microsoft.Compute/PutDeleteDedicatedHost30Min;597 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -422,7 +422,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b/hosts/hostname640e162b?api-version=2020-06-01 response: @@ -432,14 +432,14 @@ interactions: : \"eastus\",\r\n \"tags\": {\r\n \"department\": \"HR\"\r\n },\r\n \ \ \"sku\": {\r\n \"name\": \"DSv3-Type1\"\r\n },\r\n \"properties\":\ \ {\r\n \"platformFaultDomain\": 1,\r\n \"autoReplaceOnFailure\": true,\r\ - \n \"hostId\": \"f69851a6-aa1e-4f65-939b-c3981e07c68f\",\r\n \"provisioningTime\"\ - : \"2021-01-19T08:07:06.0516674+00:00\",\r\n \"provisioningState\": \"\ + \n \"hostId\": \"ec0edb29-c9aa-452a-b1ea-e5c8fe83b4c9\",\r\n \"provisioningTime\"\ + : \"2021-02-02T08:39:54.6056063+00:00\",\r\n \"provisioningState\": \"\ Updating\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/38df2842-7ba0-474e-ba87-e412f5a4561c?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3c715d64-36bb-463f-b234-ad8a99a27af4?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -447,7 +447,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:07:38 GMT + - Tue, 02 Feb 2021 08:40:31 GMT expires: - '-1' pragma: @@ -466,7 +466,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutDeleteDedicatedHost3Min;116,Microsoft.Compute/PutDeleteDedicatedHost30Min;596 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 200 message: OK @@ -480,23 +480,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/38df2842-7ba0-474e-ba87-e412f5a4561c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3c715d64-36bb-463f-b234-ad8a99a27af4?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:07:37.9735608+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:07:37.989144+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"38df2842-7ba0-474e-ba87-e412f5a4561c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:40:30.1368984+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:40:30.1525436+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"3c715d64-36bb-463f-b234-ad8a99a27af4\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:08:09 GMT + - Tue, 02 Feb 2021 08:41:01 GMT expires: - '-1' pragma: @@ -513,7 +513,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29949 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29942 status: code: 200 message: OK @@ -527,7 +527,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b/hosts/hostname640e162b?api-version=2020-06-01 response: @@ -537,8 +537,8 @@ interactions: : \"eastus\",\r\n \"tags\": {\r\n \"department\": \"HR\"\r\n },\r\n \ \ \"sku\": {\r\n \"name\": \"DSv3-Type1\"\r\n },\r\n \"properties\":\ \ {\r\n \"platformFaultDomain\": 1,\r\n \"autoReplaceOnFailure\": true,\r\ - \n \"hostId\": \"f69851a6-aa1e-4f65-939b-c3981e07c68f\",\r\n \"virtualMachines\"\ - : [],\r\n \"provisioningTime\": \"2021-01-19T08:07:06.0516674+00:00\",\r\ + \n \"hostId\": \"ec0edb29-c9aa-452a-b1ea-e5c8fe83b4c9\",\r\n \"virtualMachines\"\ + : [],\r\n \"provisioningTime\": \"2021-02-02T08:39:54.6056063+00:00\",\r\ \n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: cache-control: @@ -548,7 +548,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:08:10 GMT + - Tue, 02 Feb 2021 08:41:02 GMT expires: - '-1' pragma: @@ -565,7 +565,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetDedicatedHost3Min;246,Microsoft.Compute/GetDedicatedHost30Min;995 + - Microsoft.Compute/GetDedicatedHost3Min;245,Microsoft.Compute/GetDedicatedHost30Min;994 status: code: 200 message: OK @@ -581,7 +581,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b/hosts/hostname640e162b?api-version=2020-06-01 response: @@ -591,17 +591,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/745c25d1-60a9-47d6-a427-16f441a599df?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/95826081-8902-4a52-b61d-55172e82779e?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:08:10 GMT + - Tue, 02 Feb 2021 08:41:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/745c25d1-60a9-47d6-a427-16f441a599df?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/95826081-8902-4a52-b61d-55172e82779e?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -614,7 +614,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutDeleteDedicatedHost3Min;115,Microsoft.Compute/PutDeleteDedicatedHost30Min;595 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -628,23 +628,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/745c25d1-60a9-47d6-a427-16f441a599df?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/95826081-8902-4a52-b61d-55172e82779e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:08:10.7704293+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:08:10.8954216+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"745c25d1-60a9-47d6-a427-16f441a599df\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:41:02.996297+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:41:03.0900464+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"95826081-8902-4a52-b61d-55172e82779e\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:08:41 GMT + - Tue, 02 Feb 2021 08:41:33 GMT expires: - '-1' pragma: @@ -661,7 +661,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29946 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29940 status: code: 200 message: OK @@ -677,7 +677,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/hostGroups/hostgroup640e162b?api-version=2020-06-01 response: @@ -689,7 +689,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:08:46 GMT + - Tue, 02 Feb 2021 08:41:38 GMT expires: - '-1' pragma: @@ -704,7 +704,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutDeleteDedicatedHost3Min;114,Microsoft.Compute/PutDeleteDedicatedHost30Min;594 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14998' status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disk_encryption.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disk_encryption.yaml index 8a42d28f55f6..b5bad58a06b9 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disk_encryption.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disk_encryption.yaml @@ -20,10 +20,10 @@ interactions: User-Agent: - azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac","name":"keyvaultxmmx3d1e15ac","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"00000000-0000-0000-0000-000000000000","accessPolicies":[{"tenantId":"00000000-0000-0000-0000-000000000000","objectId":"123743cc-88ef-49ee-920e-13958fe5697d","permissions":{"keys":["encrypt","decrypt","wrapKey","unwrapKey","sign","verify","get","list","create","update","import","delete","backup","restore","recover","purge"]}}],"enabledForDeployment":false,"enabledForDiskEncryption":true,"enableSoftDelete":true,"vaultUri":"https://keyvaultxmmx3d1e15ac.vault.azure.net","provisioningState":"RegisteringDns"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac","name":"keyvaultxmmy3d1e15ac","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"00000000-0000-0000-0000-000000000000","accessPolicies":[{"tenantId":"00000000-0000-0000-0000-000000000000","objectId":"123743cc-88ef-49ee-920e-13958fe5697d","permissions":{"keys":["encrypt","decrypt","wrapKey","unwrapKey","sign","verify","get","list","create","update","import","delete","backup","restore","recover","purge"]}}],"enabledForDeployment":false,"enabledForDiskEncryption":true,"enableSoftDelete":true,"vaultUri":"https://keyvaultxmmy3d1e15ac.vault.azure.net","provisioningState":"RegisteringDns"}}' headers: cache-control: - no-cache @@ -32,7 +32,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:56:38 GMT + - Wed, 03 Feb 2021 03:22:26 GMT expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.190.0 + - 1.1.204.0 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-powered-by: @@ -70,10 +70,10 @@ interactions: User-Agent: - azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac?api-version=2019-09-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac","name":"keyvaultxmmx3d1e15ac","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"00000000-0000-0000-0000-000000000000","accessPolicies":[{"tenantId":"00000000-0000-0000-0000-000000000000","objectId":"123743cc-88ef-49ee-920e-13958fe5697d","permissions":{"keys":["encrypt","decrypt","wrapKey","unwrapKey","sign","verify","get","list","create","update","import","delete","backup","restore","recover","purge"]}}],"enabledForDeployment":false,"enabledForDiskEncryption":true,"enableSoftDelete":true,"vaultUri":"https://keyvaultxmmx3d1e15ac.vault.azure.net/","provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac","name":"keyvaultxmmy3d1e15ac","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"00000000-0000-0000-0000-000000000000","accessPolicies":[{"tenantId":"00000000-0000-0000-0000-000000000000","objectId":"123743cc-88ef-49ee-920e-13958fe5697d","permissions":{"keys":["encrypt","decrypt","wrapKey","unwrapKey","sign","verify","get","list","create","update","import","delete","backup","restore","recover","purge"]}}],"enabledForDeployment":false,"enabledForDiskEncryption":true,"enableSoftDelete":true,"vaultUri":"https://keyvaultxmmy3d1e15ac.vault.azure.net/","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -82,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:57:08 GMT + - Wed, 03 Feb 2021 03:22:56 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.1.190.0 + - 1.1.204.0 x-powered-by: - ASP.NET status: @@ -122,7 +122,7 @@ interactions: User-Agent: - azsdk-python-keyvault-keys/4.3.1 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/create?api-version=7.1 + uri: https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/create?api-version=7.1 response: body: string: '{"error":{"code":"Unauthorized","message":"Request is missing a Bearer @@ -135,7 +135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:57:11 GMT + - Wed, 03 Feb 2021 03:22:57 GMT expires: - '-1' pragma: @@ -174,10 +174,10 @@ interactions: User-Agent: - azsdk-python-keyvault-keys/4.3.1 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/create?api-version=7.1 + uri: https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/create?api-version=7.1 response: body: - string: '{"key":{"kid":"https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"sBOxBuiYPMhd5D7aIk2EvopS3ZCZa1TL-aWD3gxCSkup1YpdRpdXhUSqnd-PkhtCUp3a5Ns7aJNFxJ42utiT2ki1WxDZlrQnlf4yqNKMxS7TlBZN4ml2ybkfUqlb1SIkiWlg89rJUIv6bchs2kqdfqMZoJHzK5lLFQIAcuNAjTO_2R8w8DfvY5tAxVGzK8QneF2yXjneYk7B1EOoxzFbq43YAfojcF2umibZT6NgxrTJIVC1A2F1Weo9g-lH9aXEi8huxdViSRP-CH79OTAmOxkQ6NSnbWDFJkIJVx3mOovdfPD1-xCIAc3CNf9bEbMIrlEDesci9qPI6SnDKu7IAQ","e":"AQAB"},"attributes":{"enabled":true,"exp":2527401600,"created":1611115033,"updated":1611115033,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' + string: '{"key":{"kid":"https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"tdyXASAO2phXUqr4LAuDY9FIc_bpSjYtzAd9MmAxzwIrSbuVWyJ1N-g0IKk-n2w7lqbiMFeU9xOV7qtJVdyX3WQMOMUvTKuP7Q6ozlEQ4r-Y_jHBArn563ukY6EugPI-Hz3e1Q2vVy7bWw3Zn0rBl4O5p2mrRgXH0bSYJfE1QGLE_LEpbbSkhIBwiZb_cuUQEeUFF3T4qvoVu4xaf9KhHkCqvCjeVJZ1cLmRaq5TvvgQiC0sk8JkMi3sD_e7NfPKgxPA7FYY2qTptWyWERITJBMFXvaIwQzRB2wGntUOBmvBlw63G-FzPgphpekEyTLV9ZWc4hmkpzwo4Xqr5IkYjQ","e":"AQAB"},"attributes":{"enabled":true,"exp":2527401600,"created":1612322580,"updated":1612322580,"recoveryLevel":"Recoverable+Purgeable","recoverableDays":90}}' headers: cache-control: - no-cache @@ -186,7 +186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:57:13 GMT + - Wed, 03 Feb 2021 03:23:00 GMT expires: - '-1' pragma: @@ -208,8 +208,8 @@ interactions: message: OK - request: body: '{"location": "eastus", "identity": {"type": "SystemAssigned"}, "properties": - {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac"}, - "keyUrl": "https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc"}}}' + {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac"}, + "keyUrl": "https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa"}}}' headers: Accept: - application/json @@ -222,19 +222,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac?api-version=2020-09-30 response: body: string: "{\r\n \"location\": \"eastus\",\r\n \"identity\": {\r\n \"type\"\ : \"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\":\ - \ {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac\"\ - \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc\"\ + \ {\r\n \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac\"\ + \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa\"\ \r\n },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/712e70fc-b0cc-40b6-9db9-8abebce50418?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/f02a1ff9-e49f-400b-bd1f-299427a99b30?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -242,11 +242,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:57:24 GMT + - Wed, 03 Feb 2021 03:23:10 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/712e70fc-b0cc-40b6-9db9-8abebce50418?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/f02a1ff9-e49f-400b-bd1f-299427a99b30?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -259,7 +259,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -273,22 +273,22 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/712e70fc-b0cc-40b6-9db9-8abebce50418?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/f02a1ff9-e49f-400b-bd1f-299427a99b30?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T03:57:24.0964823+00:00\",\r\n \"\ - endTime\": \"2021-01-20T03:57:24.3152355+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-03T03:23:10.5426202+00:00\",\r\n \"\ + endTime\": \"2021-02-03T03:23:10.6207459+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"name\":\"diskencryptionset3d1e15ac\"\ ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac\"\ ,\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus\"\ - ,\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"c1cb936e-995c-4ac7-a13a-639b8b8cdc61\"\ + ,\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"13196e8d-0afd-4346-ac81-795c0aa9dde1\"\ ,\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"properties\":{\"\ - activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac\"\ - },\"keyUrl\":\"https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc\"\ + activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac\"\ + },\"keyUrl\":\"https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa\"\ },\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\"\ - :\"Succeeded\"}}\r\n },\r\n \"name\": \"712e70fc-b0cc-40b6-9db9-8abebce50418\"\ + :\"Succeeded\"}}\r\n },\r\n \"name\": \"f02a1ff9-e49f-400b-bd1f-299427a99b30\"\ \r\n}" headers: cache-control: @@ -298,7 +298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:57:54 GMT + - Wed, 03 Feb 2021 03:23:40 GMT expires: - '-1' pragma: @@ -329,7 +329,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac?api-version=2020-09-30 response: @@ -337,11 +337,11 @@ interactions: string: "{\r\n \"name\": \"diskencryptionset3d1e15ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac\"\ ,\r\n \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\"\ : \"eastus\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n\ - \ \"principalId\": \"c1cb936e-995c-4ac7-a13a-639b8b8cdc61\",\r\n \"\ + \ \"principalId\": \"13196e8d-0afd-4346-ac81-795c0aa9dde1\",\r\n \"\ tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\"\ : {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac\"\ - \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac\"\ + \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa\"\ \r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\"\ ,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -352,7 +352,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:57:54 GMT + - Wed, 03 Feb 2021 03:23:41 GMT expires: - '-1' pragma: @@ -383,7 +383,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac?api-version=2020-09-30 response: @@ -391,11 +391,11 @@ interactions: string: "{\r\n \"name\": \"diskencryptionset3d1e15ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac\"\ ,\r\n \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\"\ : \"eastus\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n\ - \ \"principalId\": \"c1cb936e-995c-4ac7-a13a-639b8b8cdc61\",\r\n \"\ + \ \"principalId\": \"13196e8d-0afd-4346-ac81-795c0aa9dde1\",\r\n \"\ tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\"\ : {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac\"\ - \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac\"\ + \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa\"\ \r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\"\ ,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -406,7 +406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:57:54 GMT + - Wed, 03 Feb 2021 03:23:41 GMT expires: - '-1' pragma: @@ -429,8 +429,8 @@ interactions: message: OK - request: body: '{"tags": {"department": "Development", "project": "Encryption"}, "properties": - {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac"}, - "keyUrl": "https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc"}}}' + {"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac"}, + "keyUrl": "https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa"}}}' headers: Accept: - application/json @@ -443,7 +443,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac?api-version=2020-09-30 response: @@ -451,16 +451,16 @@ interactions: string: "{\r\n \"name\": \"diskencryptionset3d1e15ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac\"\ ,\r\n \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\"\ : \"eastus\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n\ - \ \"principalId\": \"c1cb936e-995c-4ac7-a13a-639b8b8cdc61\",\r\n \"\ + \ \"principalId\": \"13196e8d-0afd-4346-ac81-795c0aa9dde1\",\r\n \"\ tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n \"properties\"\ : {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\n \"id\"\ - : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac\"\ - \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc\"\ + : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac\"\ + \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa\"\ \r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\"\ ,\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/98cddf46-d1fa-4319-a73c-c26b292ac072?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/00eb005d-3278-4af1-bc34-9d160b45439d?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -468,11 +468,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:57:56 GMT + - Wed, 03 Feb 2021 03:23:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/98cddf46-d1fa-4319-a73c-c26b292ac072?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/00eb005d-3278-4af1-bc34-9d160b45439d?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -483,7 +483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -497,33 +497,33 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/98cddf46-d1fa-4319-a73c-c26b292ac072?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/00eb005d-3278-4af1-bc34-9d160b45439d?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T03:57:56.3778865+00:00\",\r\n \"\ - endTime\": \"2021-01-20T03:57:56.4247613+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-03T03:23:43.716712+00:00\",\r\n \"\ + endTime\": \"2021-02-03T03:23:43.7948087+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"name\":\"diskencryptionset3d1e15ac\"\ ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac\"\ ,\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus\"\ ,\"tags\":{\"department\":\"Development\",\"project\":\"Encryption\"},\"identity\"\ - :{\"type\":\"SystemAssigned\",\"principalId\":\"c1cb936e-995c-4ac7-a13a-639b8b8cdc61\"\ + :{\"type\":\"SystemAssigned\",\"principalId\":\"13196e8d-0afd-4346-ac81-795c0aa9dde1\"\ ,\"tenantId\":\"00000000-0000-0000-0000-000000000000\"},\"properties\":{\"\ - activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac\"\ - },\"keyUrl\":\"https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc\"\ + activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac\"\ + },\"keyUrl\":\"https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa\"\ },\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\"\ - :\"Succeeded\"}}\r\n },\r\n \"name\": \"98cddf46-d1fa-4319-a73c-c26b292ac072\"\ + :\"Succeeded\"}}\r\n },\r\n \"name\": \"00eb005d-3278-4af1-bc34-9d160b45439d\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '1186' + - '1185' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:58:26 GMT + - Wed, 03 Feb 2021 03:24:13 GMT expires: - '-1' pragma: @@ -554,7 +554,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac?api-version=2020-09-30 response: @@ -563,11 +563,11 @@ interactions: ,\r\n \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\"\ : \"eastus\",\r\n \"tags\": {\r\n \"department\": \"Development\",\r\n\ \ \"project\": \"Encryption\"\r\n },\r\n \"identity\": {\r\n \"type\"\ - : \"SystemAssigned\",\r\n \"principalId\": \"c1cb936e-995c-4ac7-a13a-639b8b8cdc61\"\ + : \"SystemAssigned\",\r\n \"principalId\": \"13196e8d-0afd-4346-ac81-795c0aa9dde1\"\ ,\r\n \"tenantId\": \"00000000-0000-0000-0000-000000000000\"\r\n },\r\n\ \ \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\": {\r\ - \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmx3d1e15ac\"\ - \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmx3d1e15ac.vault.azure.net/keys/testkey/b8ccae344da5431282ebdace9405b4fc\"\ + \n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.KeyVault/vaults/keyvaultxmmy3d1e15ac\"\ + \r\n },\r\n \"keyUrl\": \"https://keyvaultxmmy3d1e15ac.vault.azure.net/keys/testkey/5659da1d41ce485d88a543c945daffaa\"\ \r\n },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\"\ ,\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: @@ -578,7 +578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:58:27 GMT + - Wed, 03 Feb 2021 03:24:14 GMT expires: - '-1' pragma: @@ -611,7 +611,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/diskEncryptionSets/diskencryptionset3d1e15ac?api-version=2020-09-30 response: @@ -619,17 +619,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0793af34-e5ff-4e7f-a601-1df847eb8af1?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5428ed01-62a7-4063-bf62-ef8dda2057a6?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 03:58:28 GMT + - Wed, 03 Feb 2021 03:24:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0793af34-e5ff-4e7f-a601-1df847eb8af1?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5428ed01-62a7-4063-bf62-ef8dda2057a6?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -642,7 +642,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskEncryptionSet3Min;98,Microsoft.Compute/HighCostDiskEncryptionSet30Min;298 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -656,23 +656,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0793af34-e5ff-4e7f-a601-1df847eb8af1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5428ed01-62a7-4063-bf62-ef8dda2057a6?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T03:58:28.690633+00:00\",\r\n \"\ - endTime\": \"2021-01-20T03:58:28.784385+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"0793af34-e5ff-4e7f-a601-1df847eb8af1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-03T03:24:15.4058087+00:00\",\r\n \"\ + endTime\": \"2021-02-03T03:24:15.4683144+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"5428ed01-62a7-4063-bf62-ef8dda2057a6\"\r\n}" headers: cache-control: - no-cache content-length: - - '182' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 03:58:59 GMT + - Wed, 03 Feb 2021 03:24:45 GMT expires: - '-1' pragma: diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disks.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disks.yaml index 0c03c4a1a6d9..f2fd3c4d566b 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disks.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disks.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175?api-version=2020-09-30 response: @@ -25,7 +25,7 @@ interactions: : \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/73b937cb-3201-4c69-8985-181f6f0fa822?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0c3b6665-d100-4e90-8a21-1fb9b1385f18?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -33,11 +33,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:10 GMT + - Tue, 02 Feb 2021 08:43:59 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/73b937cb-3201-4c69-8985-181f6f0fa822?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0c3b6665-d100-4e90-8a21-1fb9b1385f18?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -50,7 +50,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -64,13 +64,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/73b937cb-3201-4c69-8985-181f6f0fa822?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0c3b6665-d100-4e90-8a21-1fb9b1385f18?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:11:11.4945448+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:11:11.6195221+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:43:58.9371627+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:43:59.1246594+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"disknamex77f61175\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175\"\ ,\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\"\ @@ -79,11 +79,11 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:11:11.4945448+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:43:58.9371627+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"59815315-2d0d-4d14-bb1b-245a0e79d030\"\ + : 214748364800,\r\n \"uniqueId\": \"ff7d2ba1-e7d7-4a69-9249-7de1420a28a9\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"\ - name\": \"73b937cb-3201-4c69-8985-181f6f0fa822\"\r\n}" + name\": \"0c3b6665-d100-4e90-8a21-1fb9b1385f18\"\r\n}" headers: cache-control: - no-cache @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:13 GMT + - Tue, 02 Feb 2021 08:44:01 GMT expires: - '-1' pragma: @@ -123,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175?api-version=2020-09-30 response: @@ -135,9 +135,9 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:11:11.4945448+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:43:58.9371627+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"59815315-2d0d-4d14-bb1b-245a0e79d030\"\ + : 214748364800,\r\n \"uniqueId\": \"ff7d2ba1-e7d7-4a69-9249-7de1420a28a9\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -147,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:13 GMT + - Tue, 02 Feb 2021 08:44:01 GMT expires: - '-1' pragma: @@ -178,7 +178,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175?api-version=2020-09-30 response: @@ -190,9 +190,9 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:11:11.4945448+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:43:58.9371627+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"59815315-2d0d-4d14-bb1b-245a0e79d030\"\ + : 214748364800,\r\n \"uniqueId\": \"ff7d2ba1-e7d7-4a69-9249-7de1420a28a9\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -202,7 +202,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:13 GMT + - Tue, 02 Feb 2021 08:44:02 GMT expires: - '-1' pragma: @@ -237,7 +237,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175?api-version=2020-09-30 response: @@ -249,7 +249,7 @@ interactions: : \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/eb3f891a-e52d-45d5-92ce-f32b1d9960a2?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2f9a73fa-7cf4-45c2-9ac4-53e4a9a193a5?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -257,11 +257,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:14 GMT + - Tue, 02 Feb 2021 08:44:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/eb3f891a-e52d-45d5-92ce-f32b1d9960a2?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2f9a73fa-7cf4-45c2-9ac4-53e4a9a193a5?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -274,7 +274,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1195' status: code: 202 message: Accepted @@ -288,13 +288,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/eb3f891a-e52d-45d5-92ce-f32b1d9960a2?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2f9a73fa-7cf4-45c2-9ac4-53e4a9a193a5?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:11:15.0570494+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:11:15.1820675+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:44:02.7034316+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:44:02.8753063+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"disknamex77f61175\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175\"\ ,\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\"\ @@ -303,11 +303,11 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:11:11.4945448+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:43:58.9371627+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"59815315-2d0d-4d14-bb1b-245a0e79d030\"\ + : 214748364800,\r\n \"uniqueId\": \"ff7d2ba1-e7d7-4a69-9249-7de1420a28a9\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"\ - name\": \"eb3f891a-e52d-45d5-92ce-f32b1d9960a2\"\r\n}" + name\": \"2f9a73fa-7cf4-45c2-9ac4-53e4a9a193a5\"\r\n}" headers: cache-control: - no-cache @@ -316,7 +316,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:16 GMT + - Tue, 02 Feb 2021 08:44:05 GMT expires: - '-1' pragma: @@ -333,7 +333,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399984 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399983 status: code: 200 message: OK @@ -347,7 +347,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175?api-version=2020-09-30 response: @@ -359,9 +359,9 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:11:11.4945448+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:43:58.9371627+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"59815315-2d0d-4d14-bb1b-245a0e79d030\"\ + : 214748364800,\r\n \"uniqueId\": \"ff7d2ba1-e7d7-4a69-9249-7de1420a28a9\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -371,7 +371,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:17 GMT + - Tue, 02 Feb 2021 08:44:06 GMT expires: - '-1' pragma: @@ -388,7 +388,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39975 + - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39974 status: code: 200 message: OK @@ -406,7 +406,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175/beginGetAccess?api-version=2020-09-30 response: @@ -414,17 +414,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ebe25b8a-e6f8-408d-a200-08f39efcf2e7?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5c54aa90-f007-4b24-91ab-a48bf95f1589?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:11:17 GMT + - Tue, 02 Feb 2021 08:44:06 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ebe25b8a-e6f8-408d-a200-08f39efcf2e7?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5c54aa90-f007-4b24-91ab-a48bf95f1589?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -437,7 +437,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskHydrate3Min;997,Microsoft.Compute/HighCostDiskHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -451,24 +451,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ebe25b8a-e6f8-408d-a200-08f39efcf2e7?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5c54aa90-f007-4b24-91ab-a48bf95f1589?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:11:18.1508184+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:11:18.5414751+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-fssb5ldx51bh.blob.core.windows.net/hwcqkfztjgvs/abcd?sv=2018-03-28&sr=b&si=ec6b3503-0fab-4f9f-9d74-b324e6876007&sig=AyO%2FzIKgfQUKTv20QXSU9d3UrQEQRVPnUYmmlROdNf4%3D\"\ - \r\n}\r\n },\r\n \"name\": \"ebe25b8a-e6f8-408d-a200-08f39efcf2e7\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:44:06.8440753+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:44:07.1878368+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-n10gq2v0hb32.z41.blob.storage.azure.net/xs5crktxl22h/abcd?sv=2018-03-28&sr=b&si=6deb53fa-7461-4a16-94f0-dc733b78d317&sig=WXRKeU54RGfe9%2BhNQJ%2FatW5GtOHDe%2B2LZgzQnncp23o%3D\"\ + \r\n}\r\n },\r\n \"name\": \"5c54aa90-f007-4b24-91ab-a48bf95f1589\"\r\n}" headers: cache-control: - no-cache content-length: - - '423' + - '432' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:48 GMT + - Tue, 02 Feb 2021 08:44:37 GMT expires: - '-1' pragma: @@ -485,7 +485,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399981 + - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399981 status: code: 200 message: OK @@ -499,22 +499,22 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ebe25b8a-e6f8-408d-a200-08f39efcf2e7?monitor=true&api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/5c54aa90-f007-4b24-91ab-a48bf95f1589?monitor=true&api-version=2020-09-30 response: body: - string: "{\r\n \"accessSAS\": \"https://md-fssb5ldx51bh.blob.core.windows.net/hwcqkfztjgvs/abcd?sv=2018-03-28&sr=b&si=ec6b3503-0fab-4f9f-9d74-b324e6876007&sig=AyO%2FzIKgfQUKTv20QXSU9d3UrQEQRVPnUYmmlROdNf4%3D\"\ + string: "{\r\n \"accessSAS\": \"https://md-n10gq2v0hb32.z41.blob.storage.azure.net/xs5crktxl22h/abcd?sv=2018-03-28&sr=b&si=6deb53fa-7461-4a16-94f0-dc733b78d317&sig=WXRKeU54RGfe9%2BhNQJ%2FatW5GtOHDe%2B2LZgzQnncp23o%3D\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '198' + - '207' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:11:48 GMT + - Tue, 02 Feb 2021 08:44:37 GMT expires: - '-1' pragma: @@ -531,7 +531,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399980 + - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399980 status: code: 200 message: OK @@ -547,7 +547,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175/endGetAccess?api-version=2020-09-30 response: @@ -555,17 +555,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/64eea220-7d88-4b36-8111-92db073e83c1?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4a8f98fe-dad0-428f-9d8b-272ba8557ee0?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:11:49 GMT + - Tue, 02 Feb 2021 08:44:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/64eea220-7d88-4b36-8111-92db073e83c1?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4a8f98fe-dad0-428f-9d8b-272ba8557ee0?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -578,7 +578,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskHydrate3Min;996,Microsoft.Compute/HighCostDiskHydrate30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 202 message: Accepted @@ -592,14 +592,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/64eea220-7d88-4b36-8111-92db073e83c1?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4a8f98fe-dad0-428f-9d8b-272ba8557ee0?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:11:49.2457805+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:11:49.3864055+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"64eea220-7d88-4b36-8111-92db073e83c1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:44:37.9079399+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:44:38.1110645+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"4a8f98fe-dad0-428f-9d8b-272ba8557ee0\"\r\n}" headers: cache-control: - no-cache @@ -608,7 +608,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:12:19 GMT + - Tue, 02 Feb 2021 08:45:07 GMT expires: - '-1' pragma: @@ -639,9 +639,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/64eea220-7d88-4b36-8111-92db073e83c1?monitor=true&api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4a8f98fe-dad0-428f-9d8b-272ba8557ee0?monitor=true&api-version=2020-09-30 response: body: string: '' @@ -651,7 +651,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:12:19 GMT + - Tue, 02 Feb 2021 08:45:08 GMT expires: - '-1' pragma: @@ -680,7 +680,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex77f61175?api-version=2020-09-30 response: @@ -688,17 +688,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0f5dedd5-cbde-44aa-8af8-68da548b1782?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ecff28b5-ace9-4968-8aa6-c7f132337df0?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:12:20 GMT + - Tue, 02 Feb 2021 08:45:09 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0f5dedd5-cbde-44aa-8af8-68da548b1782?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ecff28b5-ace9-4968-8aa6-c7f132337df0?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -711,7 +711,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteDisks3Min;998,Microsoft.Compute/DeleteDisks30Min;7995 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' status: code: 202 message: Accepted @@ -725,23 +725,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/0f5dedd5-cbde-44aa-8af8-68da548b1782?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ecff28b5-ace9-4968-8aa6-c7f132337df0?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:12:20.792803+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:12:21.0897055+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"0f5dedd5-cbde-44aa-8af8-68da548b1782\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:45:09.5054548+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:45:09.7710493+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"ecff28b5-ace9-4968-8aa6-c7f132337df0\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:12:50 GMT + - Tue, 02 Feb 2021 08:45:39 GMT expires: - '-1' pragma: diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disks_multi.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disks_multi.yaml index 2a52e8fd5523..dcc8b66ede44 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disks_multi.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_disks_multi.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff?api-version=2019-03-01 response: @@ -25,7 +25,7 @@ interactions: : \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b4db48c0-5d71-45f5-a4fc-e636b3612b9d?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d06f721c-a45c-49e9-906c-38234aa5531f?api-version=2019-03-01 cache-control: - no-cache content-length: @@ -33,11 +33,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:03 GMT + - Tue, 02 Feb 2021 08:41:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b4db48c0-5d71-45f5-a4fc-e636b3612b9d?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d06f721c-a45c-49e9-906c-38234aa5531f?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -50,7 +50,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 202 message: Accepted @@ -64,23 +64,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b4db48c0-5d71-45f5-a4fc-e636b3612b9d?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d06f721c-a45c-49e9-906c-38234aa5531f?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:09:03.6693934+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:09:03.7787867+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:41:55.0126884+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:41:55.2157973+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"disknamexe97813ff\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff\"\ ,\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\"\ ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ - : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-01-19T08:09:03.6693934+00:00\"\ + : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-02-02T08:41:55.0283132+00:00\"\ ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ - ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"07713989-b537-4d4f-9dbb-95a13090da33\"\ - \r\n }\r\n}\r\n },\r\n \"name\": \"b4db48c0-5d71-45f5-a4fc-e636b3612b9d\"\ + ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"36e1c69f-126e-4042-a95f-2b44c367964b\"\ + \r\n }\r\n}\r\n },\r\n \"name\": \"d06f721c-a45c-49e9-906c-38234aa5531f\"\ \r\n}" headers: cache-control: @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:05 GMT + - Tue, 02 Feb 2021 08:41:57 GMT expires: - '-1' pragma: @@ -121,7 +121,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff?api-version=2019-03-01 response: @@ -131,9 +131,9 @@ interactions: ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ - : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-01-19T08:09:03.6693934+00:00\"\ + : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-02-02T08:41:55.0283132+00:00\"\ ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ - ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"07713989-b537-4d4f-9dbb-95a13090da33\"\ + ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"36e1c69f-126e-4042-a95f-2b44c367964b\"\ \r\n }\r\n}" headers: cache-control: @@ -143,7 +143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:05 GMT + - Tue, 02 Feb 2021 08:41:57 GMT expires: - '-1' pragma: @@ -174,7 +174,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff?api-version=2019-03-01 response: @@ -184,9 +184,9 @@ interactions: ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ - : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-01-19T08:09:03.6693934+00:00\"\ + : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-02-02T08:41:55.0283132+00:00\"\ ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ - ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"07713989-b537-4d4f-9dbb-95a13090da33\"\ + ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"36e1c69f-126e-4042-a95f-2b44c367964b\"\ \r\n }\r\n}" headers: cache-control: @@ -196,7 +196,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:06 GMT + - Tue, 02 Feb 2021 08:41:57 GMT expires: - '-1' pragma: @@ -231,7 +231,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff?api-version=2019-03-01 response: @@ -243,7 +243,7 @@ interactions: : \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/899387b5-062a-42a8-b6cc-742f91e7eddc?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/170b1abb-55a1-43d5-bb9c-818c4ec5c7f2?api-version=2019-03-01 cache-control: - no-cache content-length: @@ -251,11 +251,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:06 GMT + - Tue, 02 Feb 2021 08:41:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/899387b5-062a-42a8-b6cc-742f91e7eddc?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/170b1abb-55a1-43d5-bb9c-818c4ec5c7f2?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -268,7 +268,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 202 message: Accepted @@ -282,23 +282,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/899387b5-062a-42a8-b6cc-742f91e7eddc?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/170b1abb-55a1-43d5-bb9c-818c4ec5c7f2?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:09:07.4350769+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:09:07.5444212+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:41:58.9190823+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:41:59.0753181+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"disknamexe97813ff\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff\"\ ,\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\"\ ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ - : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-01-19T08:09:03.6693934+00:00\"\ + : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-02-02T08:41:55.0283132+00:00\"\ ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ - ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"07713989-b537-4d4f-9dbb-95a13090da33\"\ - \r\n }\r\n}\r\n },\r\n \"name\": \"899387b5-062a-42a8-b6cc-742f91e7eddc\"\ + ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"36e1c69f-126e-4042-a95f-2b44c367964b\"\ + \r\n }\r\n}\r\n },\r\n \"name\": \"170b1abb-55a1-43d5-bb9c-818c4ec5c7f2\"\ \r\n}" headers: cache-control: @@ -308,7 +308,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:09 GMT + - Tue, 02 Feb 2021 08:42:00 GMT expires: - '-1' pragma: @@ -325,7 +325,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995 + - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994 status: code: 200 message: OK @@ -339,7 +339,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff?api-version=2019-03-01 response: @@ -349,9 +349,9 @@ interactions: ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ - : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-01-19T08:09:03.6693934+00:00\"\ + : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"timeCreated\": \"2021-02-02T08:41:55.0283132+00:00\"\ ,\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\"\ - ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"07713989-b537-4d4f-9dbb-95a13090da33\"\ + ,\r\n \"diskSizeBytes\": 214748364800,\r\n \"uniqueId\": \"36e1c69f-126e-4042-a95f-2b44c367964b\"\ \r\n }\r\n}" headers: cache-control: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:09 GMT + - Tue, 02 Feb 2021 08:42:01 GMT expires: - '-1' pragma: @@ -378,7 +378,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39985 + - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39984 status: code: 200 message: OK @@ -396,7 +396,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff/beginGetAccess?api-version=2019-03-01 response: @@ -404,17 +404,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2d4dba32-e3d9-4c7a-ae17-1aadafff7e81?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8124187e-03c6-4da3-82ea-7e13d4a61215?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:09:10 GMT + - Tue, 02 Feb 2021 08:42:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2d4dba32-e3d9-4c7a-ae17-1aadafff7e81?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8124187e-03c6-4da3-82ea-7e13d4a61215?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -427,7 +427,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskHydrate3Min;999,Microsoft.Compute/HighCostDiskHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 202 message: Accepted @@ -441,24 +441,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2d4dba32-e3d9-4c7a-ae17-1aadafff7e81?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8124187e-03c6-4da3-82ea-7e13d4a61215?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:09:10.7788019+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:09:11.1225905+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-ddchjbggr4l3.blob.core.windows.net/nzcfstnjwbxh/abcd?sv=2018-03-28&sr=b&si=ce0d1aff-56bd-40c1-a796-cbd9c755671a&sig=AdIqINvRTqJZjKz5bmVb%2FyDccLZAQJXlapaE%2Bk7pwkM%3D\"\ - \r\n}\r\n },\r\n \"name\": \"2d4dba32-e3d9-4c7a-ae17-1aadafff7e81\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:42:02.2628512+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:42:02.669151+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-z3gcghjgnld4.z30.blob.storage.azure.net/vkfdr4hbrhvx/abcd?sv=2018-03-28&sr=b&si=9b18f546-2723-488c-90c8-2a06a25265f6&sig=QQzNugTelHFWdbpEu5USQk4G%2F5TUWu9gL%2BzuEGbHV54%3D\"\ + \r\n}\r\n },\r\n \"name\": \"8124187e-03c6-4da3-82ea-7e13d4a61215\"\r\n}" headers: cache-control: - no-cache content-length: - - '425' + - '429' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:40 GMT + - Tue, 02 Feb 2021 08:42:32 GMT expires: - '-1' pragma: @@ -489,22 +489,22 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2d4dba32-e3d9-4c7a-ae17-1aadafff7e81?monitor=true&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8124187e-03c6-4da3-82ea-7e13d4a61215?monitor=true&api-version=2019-03-01 response: body: - string: "{\r\n \"accessSAS\": \"https://md-ddchjbggr4l3.blob.core.windows.net/nzcfstnjwbxh/abcd?sv=2018-03-28&sr=b&si=ce0d1aff-56bd-40c1-a796-cbd9c755671a&sig=AdIqINvRTqJZjKz5bmVb%2FyDccLZAQJXlapaE%2Bk7pwkM%3D\"\ + string: "{\r\n \"accessSAS\": \"https://md-z3gcghjgnld4.z30.blob.storage.azure.net/vkfdr4hbrhvx/abcd?sv=2018-03-28&sr=b&si=9b18f546-2723-488c-90c8-2a06a25265f6&sig=QQzNugTelHFWdbpEu5USQk4G%2F5TUWu9gL%2BzuEGbHV54%3D\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '200' + - '205' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:09:40 GMT + - Tue, 02 Feb 2021 08:42:32 GMT expires: - '-1' pragma: @@ -537,7 +537,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff/endGetAccess?api-version=2019-03-01 response: @@ -545,17 +545,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6dd14550-1202-45e0-95d1-81fff97928a9?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2e951ab9-9bb8-4107-9f44-0940cb977fa9?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:09:41 GMT + - Tue, 02 Feb 2021 08:42:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6dd14550-1202-45e0-95d1-81fff97928a9?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2e951ab9-9bb8-4107-9f44-0940cb977fa9?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -568,7 +568,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostDiskHydrate3Min;998,Microsoft.Compute/HighCostDiskHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 202 message: Accepted @@ -582,14 +582,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6dd14550-1202-45e0-95d1-81fff97928a9?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2e951ab9-9bb8-4107-9f44-0940cb977fa9?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:09:41.8986945+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:09:42.0393512+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"6dd14550-1202-45e0-95d1-81fff97928a9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:42:33.3892268+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:42:33.5923865+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"2e951ab9-9bb8-4107-9f44-0940cb977fa9\"\r\n}" headers: cache-control: - no-cache @@ -598,7 +598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:10:12 GMT + - Tue, 02 Feb 2021 08:43:03 GMT expires: - '-1' pragma: @@ -629,9 +629,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6dd14550-1202-45e0-95d1-81fff97928a9?monitor=true&api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/2e951ab9-9bb8-4107-9f44-0940cb977fa9?monitor=true&api-version=2019-03-01 response: body: string: '' @@ -641,7 +641,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:10:12 GMT + - Tue, 02 Feb 2021 08:43:03 GMT expires: - '-1' pragma: @@ -670,7 +670,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamexe97813ff?api-version=2019-03-01 response: @@ -678,17 +678,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/48b454b6-52da-408c-a563-af2c5008e237?api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d8985f0b-b31f-409c-9332-cf639edfb105?api-version=2019-03-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:10:13 GMT + - Tue, 02 Feb 2021 08:43:04 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/48b454b6-52da-408c-a563-af2c5008e237?monitor=true&api-version=2019-03-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d8985f0b-b31f-409c-9332-cf639edfb105?monitor=true&api-version=2019-03-01 pragma: - no-cache server: @@ -701,7 +701,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7996 x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14998' status: code: 202 message: Accepted @@ -715,23 +715,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/48b454b6-52da-408c-a563-af2c5008e237?api-version=2019-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d8985f0b-b31f-409c-9332-cf639edfb105?api-version=2019-03-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:10:13.3998669+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:10:13.603028+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"48b454b6-52da-408c-a563-af2c5008e237\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:43:04.9831629+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:43:05.2487739+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"d8985f0b-b31f-409c-9332-cf639edfb105\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:10:43 GMT + - Tue, 02 Feb 2021 08:43:35 GMT expires: - '-1' pragma: diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_shot.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_shot.yaml index 213b9362b0e4..9cb867bab466 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_shot.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_disks.test_compute_shot.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115?api-version=2020-09-30 response: @@ -25,7 +25,7 @@ interactions: : \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4142c2db-66a7-4712-8201-75bda2999ec9?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ec2034fb-8c8f-4002-98c1-728e5b35ba29?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -33,11 +33,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:09 GMT + - Tue, 02 Feb 2021 08:45:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4142c2db-66a7-4712-8201-75bda2999ec9?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ec2034fb-8c8f-4002-98c1-728e5b35ba29?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -50,7 +50,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7995 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -64,13 +64,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/4142c2db-66a7-4712-8201-75bda2999ec9?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/ec2034fb-8c8f-4002-98c1-728e5b35ba29?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:13:09.5283956+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:13:09.7315315+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:45:59.4462856+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:45:59.6025342+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"disknamex66bb1115\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ ,\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\"\ @@ -79,11 +79,11 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:13:09.5283956+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:45:59.4462856+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\ + : 214748364800,\r\n \"uniqueId\": \"2427029b-213c-4621-aac3-e07ef581b0db\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"\ - name\": \"4142c2db-66a7-4712-8201-75bda2999ec9\"\r\n}" + name\": \"ec2034fb-8c8f-4002-98c1-728e5b35ba29\"\r\n}" headers: cache-control: - no-cache @@ -92,7 +92,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:11 GMT + - Tue, 02 Feb 2021 08:46:01 GMT expires: - '-1' pragma: @@ -123,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115?api-version=2020-09-30 response: @@ -135,9 +135,9 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:13:09.5283956+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:45:59.4462856+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\ + : 214748364800,\r\n \"uniqueId\": \"2427029b-213c-4621-aac3-e07ef581b0db\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -147,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:12 GMT + - Tue, 02 Feb 2021 08:46:01 GMT expires: - '-1' pragma: @@ -164,7 +164,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39969 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39969 status: code: 200 message: OK @@ -183,19 +183,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115?api-version=2020-09-30 response: body: string: "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"creationData\"\ : {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ - ,\r\n \"sourceUniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\r\n\ + ,\r\n \"sourceUniqueId\": \"2427029b-213c-4621-aac3-e07ef581b0db\"\r\n\ \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\"\ : true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7e7b90f8-f9af-406e-805e-16b99a5648a3?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c29024fe-9a20-4ece-835f-fcc9f4f43a02?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -203,11 +203,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:16 GMT + - Tue, 02 Feb 2021 08:46:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7e7b90f8-f9af-406e-805e-16b99a5648a3?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c29024fe-9a20-4ece-835f-fcc9f4f43a02?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -220,7 +220,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 202 message: Accepted @@ -234,36 +234,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/7e7b90f8-f9af-406e-805e-16b99a5648a3?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c29024fe-9a20-4ece-835f-fcc9f4f43a02?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:13:16.4346927+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:13:17.3097575+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshotx66bb1115\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115\"\ - ,\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\"\ - ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ - \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ - : \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ - ,\r\n \"sourceUniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\r\n\ - \ },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\"\ - : \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\ - \n \"timeCreated\": \"2021-01-19T08:13:16.4346927+00:00\",\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"c59e4949-69d4-4530-b287-82cb26f17d50\"\ - ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"\ - name\": \"7e7b90f8-f9af-406e-805e-16b99a5648a3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:46:05.2276996+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c29024fe-9a20-4ece-835f-fcc9f4f43a02\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '1374' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:18 GMT + - Tue, 02 Feb 2021 08:46:07 GMT expires: - '-1' pragma: @@ -294,7 +281,112 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c29024fe-9a20-4ece-835f-fcc9f4f43a02?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T08:46:05.2276996+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"c29024fe-9a20-4ece-835f-fcc9f4f43a02\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 08:46:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399970 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c29024fe-9a20-4ece-835f-fcc9f4f43a02?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T08:46:05.2276996+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:46:27.9311034+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"properties\": {\r\n \"output\": {\"name\":\"snapshotx66bb1115\"\ + ,\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115\"\ + ,\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"eastus\",\"sku\"\ + :{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\"\ + :{\"createOption\":\"Copy\",\"sourceResourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ + ,\"sourceUniqueId\":\"2427029b-213c-4621-aac3-e07ef581b0db\"},\"diskSizeGB\"\ + :200,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\"\ + :false,\"timeCreated\":\"2021-02-02T08:46:05.2433255+00:00\",\"provisioningState\"\ + :\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":214748364800,\"\ + uniqueId\":\"fda2afb0-f6bf-4807-af31-3969cb814a88\",\"networkAccessPolicy\"\ + :\"AllowAll\"}}\r\n },\r\n \"name\": \"c29024fe-9a20-4ece-835f-fcc9f4f43a02\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1202' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 08:46:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399968 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115?api-version=2020-09-30 response: @@ -304,12 +396,12 @@ interactions: ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ - ,\r\n \"sourceUniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\r\n\ + ,\r\n \"sourceUniqueId\": \"2427029b-213c-4621-aac3-e07ef581b0db\"\r\n\ \ },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\"\ : \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\ - \n \"timeCreated\": \"2021-01-19T08:13:16.4346927+00:00\",\r\n \"provisioningState\"\ + \n \"timeCreated\": \"2021-02-02T08:46:05.2433255+00:00\",\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"c59e4949-69d4-4530-b287-82cb26f17d50\"\ + : 214748364800,\r\n \"uniqueId\": \"fda2afb0-f6bf-4807-af31-3969cb814a88\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -319,7 +411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:18 GMT + - Tue, 02 Feb 2021 08:46:48 GMT expires: - '-1' pragma: @@ -336,7 +428,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4986,Microsoft.Compute/LowCostGet30Min;39967 + - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39964 status: code: 200 message: OK @@ -357,7 +449,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/images/imagex66bb1115?api-version=2020-06-01 response: @@ -375,7 +467,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2aed371c-332f-43d3-9bb3-4bfd6dc860e7?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/950e671c-d3d0-47b8-89f8-87338c300723?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -383,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:22 GMT + - Tue, 02 Feb 2021 08:46:53 GMT expires: - '-1' pragma: @@ -398,7 +490,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1193' status: code: 201 message: Created @@ -412,14 +504,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2aed371c-332f-43d3-9bb3-4bfd6dc860e7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/950e671c-d3d0-47b8-89f8-87338c300723?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:13:21.2706068+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:13:26.4267965+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"2aed371c-332f-43d3-9bb3-4bfd6dc860e7\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:46:52.0905542+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:46:57.2311605+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"950e671c-d3d0-47b8-89f8-87338c300723\"\r\n}" headers: cache-control: - no-cache @@ -428,7 +520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:52 GMT + - Tue, 02 Feb 2021 08:47:23 GMT expires: - '-1' pragma: @@ -445,7 +537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29944 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29938 status: code: 200 message: OK @@ -459,7 +551,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/images/imagex66bb1115?api-version=2020-06-01 response: @@ -482,7 +574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:52 GMT + - Tue, 02 Feb 2021 08:47:23 GMT expires: - '-1' pragma: @@ -513,7 +605,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115?api-version=2020-09-30 response: @@ -523,12 +615,12 @@ interactions: ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ - ,\r\n \"sourceUniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\r\n\ + ,\r\n \"sourceUniqueId\": \"2427029b-213c-4621-aac3-e07ef581b0db\"\r\n\ \ },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\"\ : \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\ - \n \"timeCreated\": \"2021-01-19T08:13:16.4346927+00:00\",\r\n \"provisioningState\"\ + \n \"timeCreated\": \"2021-02-02T08:46:05.2433255+00:00\",\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"c59e4949-69d4-4530-b287-82cb26f17d50\"\ + : 214748364800,\r\n \"uniqueId\": \"fda2afb0-f6bf-4807-af31-3969cb814a88\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -538,7 +630,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:53 GMT + - Tue, 02 Feb 2021 08:47:24 GMT expires: - '-1' pragma: @@ -555,7 +647,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4983,Microsoft.Compute/LowCostGet30Min;39962 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39962 status: code: 200 message: OK @@ -569,7 +661,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/images/imagex66bb1115?api-version=2020-06-01 response: @@ -592,7 +684,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:53 GMT + - Tue, 02 Feb 2021 08:47:24 GMT expires: - '-1' pragma: @@ -627,7 +719,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/images/imagex66bb1115?api-version=2020-06-01 response: @@ -646,7 +738,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fed16100-bba7-4bd4-9b1a-6f74f47f0fe1?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3acdd200-1451-47ab-bcdc-3cdfee4ba6ee?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -654,7 +746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:13:55 GMT + - Tue, 02 Feb 2021 08:47:27 GMT expires: - '-1' pragma: @@ -673,7 +765,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateImages3Min;38,Microsoft.Compute/CreateImages30Min;198 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' status: code: 200 message: OK @@ -687,14 +779,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fed16100-bba7-4bd4-9b1a-6f74f47f0fe1?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3acdd200-1451-47ab-bcdc-3cdfee4ba6ee?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:13:54.5672994+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:13:59.6766609+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"fed16100-bba7-4bd4-9b1a-6f74f47f0fe1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:47:25.6687105+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:47:30.7781222+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"3acdd200-1451-47ab-bcdc-3cdfee4ba6ee\"\r\n}" headers: cache-control: - no-cache @@ -703,7 +795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:14:26 GMT + - Tue, 02 Feb 2021 08:47:57 GMT expires: - '-1' pragma: @@ -720,7 +812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29942 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29936 status: code: 200 message: OK @@ -734,7 +826,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/images/imagex66bb1115?api-version=2020-06-01 response: @@ -757,7 +849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:14:26 GMT + - Tue, 02 Feb 2021 08:47:57 GMT expires: - '-1' pragma: @@ -792,7 +884,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115?api-version=2020-09-30 response: @@ -801,12 +893,12 @@ interactions: Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ : {\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \ \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ - ,\r\n \"sourceUniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\r\n\ + ,\r\n \"sourceUniqueId\": \"2427029b-213c-4621-aac3-e07ef581b0db\"\r\n\ \ },\r\n \"diskSizeGB\": 200,\r\n \"provisioningState\": \"Updating\"\ ,\r\n \"isArmResource\": true,\r\n \"faultDomain\": 0\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/73acc9cb-6464-4f6f-8f3d-fd905036d4e2?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/cd359b76-5913-45df-a191-a931eb2118e9?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -814,11 +906,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:14:27 GMT + - Tue, 02 Feb 2021 08:47:58 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/73acc9cb-6464-4f6f-8f3d-fd905036d4e2?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/cd359b76-5913-45df-a191-a931eb2118e9?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -831,7 +923,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7994 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' status: code: 202 message: Accepted @@ -845,27 +937,27 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/73acc9cb-6464-4f6f-8f3d-fd905036d4e2?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/cd359b76-5913-45df-a191-a931eb2118e9?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:14:27.6226786+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:14:27.7320673+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:47:58.9654584+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:47:59.1529259+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshotx66bb1115\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115\"\ ,\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\"\ ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ - ,\r\n \"sourceUniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\r\n\ + ,\r\n \"sourceUniqueId\": \"2427029b-213c-4621-aac3-e07ef581b0db\"\r\n\ \ },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\"\ : \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\ - \n \"timeCreated\": \"2021-01-19T08:13:16.4346927+00:00\",\r\n \"provisioningState\"\ + \n \"timeCreated\": \"2021-02-02T08:46:05.2433255+00:00\",\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"c59e4949-69d4-4530-b287-82cb26f17d50\"\ + : 214748364800,\r\n \"uniqueId\": \"fda2afb0-f6bf-4807-af31-3969cb814a88\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"\ - name\": \"73acc9cb-6464-4f6f-8f3d-fd905036d4e2\"\r\n}" + name\": \"cd359b76-5913-45df-a191-a931eb2118e9\"\r\n}" headers: cache-control: - no-cache @@ -874,7 +966,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:14:29 GMT + - Tue, 02 Feb 2021 08:48:00 GMT expires: - '-1' pragma: @@ -891,7 +983,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399966 + - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399963 status: code: 200 message: OK @@ -905,7 +997,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115?api-version=2020-09-30 response: @@ -915,12 +1007,12 @@ interactions: ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/disknamex66bb1115\"\ - ,\r\n \"sourceUniqueId\": \"ea5532a5-c03e-4283-997e-9639c83c9e0b\"\r\n\ + ,\r\n \"sourceUniqueId\": \"2427029b-213c-4621-aac3-e07ef581b0db\"\r\n\ \ },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\"\ : \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\ - \n \"timeCreated\": \"2021-01-19T08:13:16.4346927+00:00\",\r\n \"provisioningState\"\ + \n \"timeCreated\": \"2021-02-02T08:46:05.2433255+00:00\",\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"c59e4949-69d4-4530-b287-82cb26f17d50\"\ + : 214748364800,\r\n \"uniqueId\": \"fda2afb0-f6bf-4807-af31-3969cb814a88\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -930,7 +1022,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:14:29 GMT + - Tue, 02 Feb 2021 08:48:01 GMT expires: - '-1' pragma: @@ -947,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4987,Microsoft.Compute/LowCostGet30Min;39960 + - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39960 status: code: 200 message: OK @@ -965,7 +1057,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115/beginGetAccess?api-version=2020-09-30 response: @@ -973,17 +1065,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/70b9d3a3-9b3e-4330-9b4f-75393868cf16?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/267b6788-47e8-40b4-8d10-d748274588f3?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:14:30 GMT + - Tue, 02 Feb 2021 08:48:01 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/70b9d3a3-9b3e-4330-9b4f-75393868cf16?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/267b6788-47e8-40b4-8d10-d748274588f3?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -996,7 +1088,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 202 message: Accepted @@ -1010,24 +1102,24 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/70b9d3a3-9b3e-4330-9b4f-75393868cf16?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/267b6788-47e8-40b4-8d10-d748274588f3?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:14:30.9664414+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:14:31.1227067+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-chq202gxbjf0.blob.core.windows.net/wslfmqkzkxp4/abcd?sv=2018-03-28&sr=b&si=a78f7b4a-268e-4ce4-b816-118df24040a1&sig=Nj17yM10ivfdqGfmU7v5FSNz1Kkaqlkt5tz9J1TXCWA%3D\"\ - \r\n}\r\n },\r\n \"name\": \"70b9d3a3-9b3e-4330-9b4f-75393868cf16\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:48:02.3249095+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:48:02.5280491+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-ljfhnhgzk3l0.z44.blob.storage.azure.net/z0f1fqsq1p0b/abcd?sv=2018-03-28&sr=b&si=204e0f21-78e9-45b2-83ae-bbe51f31f389&sig=k05E4uN8rhEwdk%2B4RRKHHNiOS6kGYB116Br28oIbCNw%3D\"\ + \r\n}\r\n },\r\n \"name\": \"267b6788-47e8-40b4-8d10-d748274588f3\"\r\n}" headers: cache-control: - no-cache content-length: - - '421' + - '428' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:15:00 GMT + - Tue, 02 Feb 2021 08:48:32 GMT expires: - '-1' pragma: @@ -1044,7 +1136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399964 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399961 status: code: 200 message: OK @@ -1058,22 +1150,22 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/70b9d3a3-9b3e-4330-9b4f-75393868cf16?monitor=true&api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/267b6788-47e8-40b4-8d10-d748274588f3?monitor=true&api-version=2020-09-30 response: body: - string: "{\r\n \"accessSAS\": \"https://md-chq202gxbjf0.blob.core.windows.net/wslfmqkzkxp4/abcd?sv=2018-03-28&sr=b&si=a78f7b4a-268e-4ce4-b816-118df24040a1&sig=Nj17yM10ivfdqGfmU7v5FSNz1Kkaqlkt5tz9J1TXCWA%3D\"\ + string: "{\r\n \"accessSAS\": \"https://md-ljfhnhgzk3l0.z44.blob.storage.azure.net/z0f1fqsq1p0b/abcd?sv=2018-03-28&sr=b&si=204e0f21-78e9-45b2-83ae-bbe51f31f389&sig=k05E4uN8rhEwdk%2B4RRKHHNiOS6kGYB116Br28oIbCNw%3D\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '196' + - '203' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:15:00 GMT + - Tue, 02 Feb 2021 08:48:32 GMT expires: - '-1' pragma: @@ -1090,7 +1182,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399963 + - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399960 status: code: 200 message: OK @@ -1106,7 +1198,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115/endGetAccess?api-version=2020-09-30 response: @@ -1114,17 +1206,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b07f4817-cba2-4dd9-9080-c616e69760cc?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/07f72b27-9edf-4b31-9677-f32931ab1009?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:15:01 GMT + - Tue, 02 Feb 2021 08:48:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b07f4817-cba2-4dd9-9080-c616e69760cc?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/07f72b27-9edf-4b31-9677-f32931ab1009?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -1137,7 +1229,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -1151,14 +1243,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b07f4817-cba2-4dd9-9080-c616e69760cc?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/07f72b27-9edf-4b31-9677-f32931ab1009?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:15:02.0951977+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:15:02.2514497+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"b07f4817-cba2-4dd9-9080-c616e69760cc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:48:33.4981071+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:48:33.7012144+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"07f72b27-9edf-4b31-9677-f32931ab1009\"\r\n}" headers: cache-control: - no-cache @@ -1167,7 +1259,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:15:32 GMT + - Tue, 02 Feb 2021 08:49:03 GMT expires: - '-1' pragma: @@ -1184,7 +1276,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399961 + - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399958 status: code: 200 message: OK @@ -1198,9 +1290,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/b07f4817-cba2-4dd9-9080-c616e69760cc?monitor=true&api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/07f72b27-9edf-4b31-9677-f32931ab1009?monitor=true&api-version=2020-09-30 response: body: string: '' @@ -1210,7 +1302,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:15:32 GMT + - Tue, 02 Feb 2021 08:49:04 GMT expires: - '-1' pragma: @@ -1223,7 +1315,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399960 + - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399957 status: code: 200 message: OK @@ -1239,7 +1331,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/images/imagex66bb1115?api-version=2020-06-01 response: @@ -1249,17 +1341,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/169691b3-2814-425f-89d1-e6570d656a20?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b2cd535a-ccb4-47b7-ace8-78dfeb8898cd?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:15:33 GMT + - Tue, 02 Feb 2021 08:49:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/169691b3-2814-425f-89d1-e6570d656a20?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b2cd535a-ccb4-47b7-ace8-78dfeb8898cd?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1272,7 +1364,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteImages3Min;119,Microsoft.Compute/DeleteImages30Min;599 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14998' status: code: 202 message: Accepted @@ -1286,14 +1378,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/169691b3-2814-425f-89d1-e6570d656a20?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b2cd535a-ccb4-47b7-ace8-78dfeb8898cd?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:15:33.6923491+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:15:38.8485985+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"169691b3-2814-425f-89d1-e6570d656a20\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:49:05.7782481+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:49:10.9501369+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"b2cd535a-ccb4-47b7-ace8-78dfeb8898cd\"\r\n}" headers: cache-control: - no-cache @@ -1302,7 +1394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:16:03 GMT + - Tue, 02 Feb 2021 08:49:36 GMT expires: - '-1' pragma: @@ -1319,7 +1411,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29940 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29934 status: code: 200 message: OK @@ -1335,7 +1427,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotx66bb1115?api-version=2020-09-30 response: @@ -1343,17 +1435,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/79da08e4-6ebe-4c75-bda9-ce93232c47c9?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3b4c386e-ee6c-4d6c-8443-5360945f46df?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:16:04 GMT + - Tue, 02 Feb 2021 08:49:37 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/79da08e4-6ebe-4c75-bda9-ce93232c47c9?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3b4c386e-ee6c-4d6c-8443-5360945f46df?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -1366,7 +1458,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteDisks3Min;999,Microsoft.Compute/DeleteDisks30Min;7994 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14997' status: code: 202 message: Accepted @@ -1380,14 +1472,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/79da08e4-6ebe-4c75-bda9-ce93232c47c9?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3b4c386e-ee6c-4d6c-8443-5360945f46df?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:16:04.9705729+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:16:05.1424473+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"79da08e4-6ebe-4c75-bda9-ce93232c47c9\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:49:37.7059858+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:49:37.9716291+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"3b4c386e-ee6c-4d6c-8443-5360945f46df\"\r\n}" headers: cache-control: - no-cache @@ -1396,7 +1488,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:16:35 GMT + - Tue, 02 Feb 2021 08:50:07 GMT expires: - '-1' pragma: @@ -1413,7 +1505,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399956 + - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399953 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_galleries.test_compute_galleries.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_galleries.test_compute_galleries.yaml index c1c9f884ede1..719c77ebe029 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_galleries.test_compute_galleries.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_galleries.test_compute_galleries.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/diskname10bb14a9?api-version=2020-09-30 response: @@ -25,7 +25,7 @@ interactions: : \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8f1be18d-5273-4edb-bff4-341fa5464e4a?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/04773697-7909-49c6-b63d-f18563089667?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -33,11 +33,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:16:51 GMT + - Tue, 02 Feb 2021 08:50:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8f1be18d-5273-4edb-bff4-341fa5464e4a?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/04773697-7909-49c6-b63d-f18563089667?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -50,7 +50,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7993 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -64,13 +64,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/8f1be18d-5273-4edb-bff4-341fa5464e4a?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/04773697-7909-49c6-b63d-f18563089667?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:16:52.1739991+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:16:52.299056+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:50:25.1912492+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:50:25.3317916+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"diskname10bb14a9\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/diskname10bb14a9\"\ ,\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\"\ @@ -79,20 +79,20 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:16:52.1739991+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:50:25.1912492+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"65cb2d9d-d8da-4ae0-b547-165b013e5c06\"\ + : 214748364800,\r\n \"uniqueId\": \"bf1802f4-2dc8-416b-9631-96271541a239\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"\ - name\": \"8f1be18d-5273-4edb-bff4-341fa5464e4a\"\r\n}" + name\": \"04773697-7909-49c6-b63d-f18563089667\"\r\n}" headers: cache-control: - no-cache content-length: - - '1108' + - '1109' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:16:53 GMT + - Tue, 02 Feb 2021 08:50:27 GMT expires: - '-1' pragma: @@ -109,7 +109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399955 + - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399952 status: code: 200 message: OK @@ -123,7 +123,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/diskname10bb14a9?api-version=2020-09-30 response: @@ -135,9 +135,9 @@ interactions: : \"Empty\"\r\n },\r\n \"diskSizeGB\": 200,\r\n \"diskIOPSReadWrite\"\ : 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \ \ \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\"\ - : \"2021-01-19T08:16:52.1739991+00:00\",\r\n \"provisioningState\": \"\ + : \"2021-02-02T08:50:25.1912492+00:00\",\r\n \"provisioningState\": \"\ Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"65cb2d9d-d8da-4ae0-b547-165b013e5c06\"\ + : 214748364800,\r\n \"uniqueId\": \"bf1802f4-2dc8-416b-9631-96271541a239\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -147,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:16:54 GMT + - Tue, 02 Feb 2021 08:50:27 GMT expires: - '-1' pragma: @@ -183,19 +183,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotname10bb14a9?api-version=2020-09-30 response: body: string: "{\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"creationData\"\ : {\r\n \"createOption\": \"Copy\",\r\n \"sourceUri\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/diskname10bb14a9\"\ - ,\r\n \"sourceUniqueId\": \"65cb2d9d-d8da-4ae0-b547-165b013e5c06\"\r\n\ + ,\r\n \"sourceUniqueId\": \"bf1802f4-2dc8-416b-9631-96271541a239\"\r\n\ \ },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\"\ : true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/24bf8208-76be-4758-a4f7-e2179351e465?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6f7ee286-d47d-464f-b162-78c9501daea5?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -203,11 +203,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:16:56 GMT + - Tue, 02 Feb 2021 08:50:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/24bf8208-76be-4758-a4f7-e2179351e465?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6f7ee286-d47d-464f-b162-78c9501daea5?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -220,7 +220,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7996 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 202 message: Accepted @@ -234,27 +234,27 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/24bf8208-76be-4758-a4f7-e2179351e465?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/6f7ee286-d47d-464f-b162-78c9501daea5?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:16:57.2834494+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:16:57.7521406+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:50:31.4420745+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:50:31.9421074+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshotname10bb14a9\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotname10bb14a9\"\ ,\r\n \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus\"\ ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/diskname10bb14a9\"\ - ,\r\n \"sourceUniqueId\": \"65cb2d9d-d8da-4ae0-b547-165b013e5c06\"\r\n\ + ,\r\n \"sourceUniqueId\": \"bf1802f4-2dc8-416b-9631-96271541a239\"\r\n\ \ },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\"\ : \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\ - \n \"timeCreated\": \"2021-01-19T08:16:57.2834494+00:00\",\r\n \"provisioningState\"\ + \n \"timeCreated\": \"2021-02-02T08:50:31.4420745+00:00\",\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"bf177518-e684-4004-a4a2-20f9d20c1171\"\ + : 214748364800,\r\n \"uniqueId\": \"956707b4-efe0-4931-ae4e-50cbe75ddd5c\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"\ - name\": \"24bf8208-76be-4758-a4f7-e2179351e465\"\r\n}" + name\": \"6f7ee286-d47d-464f-b162-78c9501daea5\"\r\n}" headers: cache-control: - no-cache @@ -263,7 +263,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:16:59 GMT + - Tue, 02 Feb 2021 08:50:33 GMT expires: - '-1' pragma: @@ -280,7 +280,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399953 + - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399950 status: code: 200 message: OK @@ -294,7 +294,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotname10bb14a9?api-version=2020-09-30 response: @@ -304,12 +304,12 @@ interactions: ,\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\ \r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\"\ : \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/diskname10bb14a9\"\ - ,\r\n \"sourceUniqueId\": \"65cb2d9d-d8da-4ae0-b547-165b013e5c06\"\r\n\ + ,\r\n \"sourceUniqueId\": \"bf1802f4-2dc8-416b-9631-96271541a239\"\r\n\ \ },\r\n \"diskSizeGB\": 200,\r\n \"encryption\": {\r\n \"type\"\ : \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"incremental\": false,\r\ - \n \"timeCreated\": \"2021-01-19T08:16:57.2834494+00:00\",\r\n \"provisioningState\"\ + \n \"timeCreated\": \"2021-02-02T08:50:31.4420745+00:00\",\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\"\ - : 214748364800,\r\n \"uniqueId\": \"bf177518-e684-4004-a4a2-20f9d20c1171\"\ + : 214748364800,\r\n \"uniqueId\": \"956707b4-efe0-4931-ae4e-50cbe75ddd5c\"\ ,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}" headers: cache-control: @@ -319,7 +319,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:16:59 GMT + - Tue, 02 Feb 2021 08:50:34 GMT expires: - '-1' pragma: @@ -336,7 +336,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;4991,Microsoft.Compute/LowCostGet30Min;39952 + - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39952 status: code: 200 message: OK @@ -355,7 +355,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9?api-version=2020-09-30 response: @@ -368,7 +368,7 @@ interactions: \r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/493d1474-c6b7-4434-975d-d608c0a6e1c5?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/7bba65a5-e63b-489b-b1eb-65d25a7b37ef?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -376,7 +376,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:17:05 GMT + - Tue, 02 Feb 2021 08:50:39 GMT expires: - '-1' pragma: @@ -391,7 +391,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1193' status: code: 201 message: Created @@ -405,14 +405,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/493d1474-c6b7-4434-975d-d608c0a6e1c5?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/7bba65a5-e63b-489b-b1eb-65d25a7b37ef?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:17:04.5877636+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:17:05.2440468+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"493d1474-c6b7-4434-975d-d608c0a6e1c5\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:50:38.4201892+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:50:39.0295977+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"7bba65a5-e63b-489b-b1eb-65d25a7b37ef\"\r\n}" headers: cache-control: - no-cache @@ -421,7 +421,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:17:35 GMT + - Tue, 02 Feb 2021 08:51:09 GMT expires: - '-1' pragma: @@ -452,7 +452,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9?api-version=2020-09-30 response: @@ -470,7 +470,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:17:35 GMT + - Tue, 02 Feb 2021 08:51:10 GMT expires: - '-1' pragma: @@ -507,7 +507,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/applications/applicationname10bb14a9?api-version=2020-09-30 response: @@ -525,7 +525,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:17:36 GMT + - Tue, 02 Feb 2021 08:51:10 GMT expires: - '-1' pragma: @@ -540,7 +540,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1192' status: code: 201 message: Created @@ -554,7 +554,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/applications/applicationname10bb14a9?api-version=2020-09-30 response: @@ -572,7 +572,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:18:07 GMT + - Tue, 02 Feb 2021 08:51:40 GMT expires: - '-1' pragma: @@ -609,7 +609,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9?api-version=2020-09-30 response: @@ -623,7 +623,7 @@ interactions: \n \"provisioningState\": \"Creating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/8a88e8d9-90b3-4b40-9140-0b645f5fb043?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/3f0a154d-280f-4023-8786-a2aab264b065?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -631,7 +631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:18:14 GMT + - Tue, 02 Feb 2021 08:51:48 GMT expires: - '-1' pragma: @@ -646,7 +646,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1191' status: code: 201 message: Created @@ -660,14 +660,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/8a88e8d9-90b3-4b40-9140-0b645f5fb043?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/3f0a154d-280f-4023-8786-a2aab264b065?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:12.5252911+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:18:12.6815422+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"8a88e8d9-90b3-4b40-9140-0b645f5fb043\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:51:47.2018315+00:00\",\r\n \"\ + endTime\": \"2021-02-02T08:51:47.2955584+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"3f0a154d-280f-4023-8786-a2aab264b065\"\r\n}" headers: cache-control: - no-cache @@ -676,7 +676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:18:44 GMT + - Tue, 02 Feb 2021 08:52:18 GMT expires: - '-1' pragma: @@ -707,7 +707,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9?api-version=2020-09-30 response: @@ -727,7 +727,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:18:45 GMT + - Tue, 02 Feb 2021 08:52:18 GMT expires: - '-1' pragma: @@ -765,7 +765,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9/versions/1.0.0?api-version=2020-09-30 response: @@ -776,7 +776,7 @@ interactions: : {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East\ \ US\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\"\ : \"Standard_ZRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\ - \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-19T08:18:47.4159075+00:00\"\ + \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-02T08:52:23.2644364+00:00\"\ ,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\"\ : {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadOnly\",\r\ \n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotname10bb14a9\"\ @@ -784,7 +784,7 @@ interactions: \r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -792,7 +792,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:18:48 GMT + - Tue, 02 Feb 2021 08:52:23 GMT expires: - '-1' pragma: @@ -807,7 +807,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1190' status: code: 201 message: Created @@ -821,13 +821,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -837,7 +837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:19:48 GMT + - Tue, 02 Feb 2021 08:53:25 GMT expires: - '-1' pragma: @@ -868,13 +868,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -884,7 +884,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:20:49 GMT + - Tue, 02 Feb 2021 08:54:26 GMT expires: - '-1' pragma: @@ -915,13 +915,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -931,7 +931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:21:51 GMT + - Tue, 02 Feb 2021 08:55:27 GMT expires: - '-1' pragma: @@ -962,13 +962,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -978,7 +978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:22:51 GMT + - Tue, 02 Feb 2021 08:56:28 GMT expires: - '-1' pragma: @@ -1009,13 +1009,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -1025,7 +1025,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:23:52 GMT + - Tue, 02 Feb 2021 08:57:28 GMT expires: - '-1' pragma: @@ -1056,13 +1056,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -1072,7 +1072,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:24:52 GMT + - Tue, 02 Feb 2021 08:58:28 GMT expires: - '-1' pragma: @@ -1103,13 +1103,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -1119,7 +1119,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:25:53 GMT + - Tue, 02 Feb 2021 08:59:29 GMT expires: - '-1' pragma: @@ -1136,7 +1136,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4183 status: code: 200 message: OK @@ -1150,13 +1150,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -1166,7 +1166,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:26:54 GMT + - Tue, 02 Feb 2021 09:00:29 GMT expires: - '-1' pragma: @@ -1183,7 +1183,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4181 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181 status: code: 200 message: OK @@ -1197,13 +1197,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -1213,7 +1213,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:27:55 GMT + - Tue, 02 Feb 2021 09:01:30 GMT expires: - '-1' pragma: @@ -1230,7 +1230,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4179 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179 status: code: 200 message: OK @@ -1244,13 +1244,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ \r\n}" headers: cache-control: @@ -1260,7 +1260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:28:56 GMT + - Tue, 02 Feb 2021 09:02:31 GMT expires: - '-1' pragma: @@ -1277,7 +1277,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4177 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177 status: code: 200 message: OK @@ -1291,14 +1291,61 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/9368f33f-150a-4b86-9e7a-923a43fc868c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:18:47.3846612+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:29:48.3705234+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"9368f33f-150a-4b86-9e7a-923a43fc868c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:03:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4175 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/57e80b1e-95b8-49d4-a7bd-f5488ab3260e?api-version=2020-09-30 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T08:52:23.2487609+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:04:24.5794999+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"57e80b1e-95b8-49d4-a7bd-f5488ab3260e\"\r\n}" headers: cache-control: - no-cache @@ -1307,7 +1354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:29:56 GMT + - Tue, 02 Feb 2021 09:04:32 GMT expires: - '-1' pragma: @@ -1324,7 +1371,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4175 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4173 status: code: 200 message: OK @@ -1338,7 +1385,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9/versions/1.0.0?api-version=2020-09-30 response: @@ -1349,7 +1396,7 @@ interactions: : {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East\ \ US\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\"\ : \"Standard_ZRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\ - \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-19T08:18:47.4159075+00:00\"\ + \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-02T08:52:23.2644364+00:00\"\ ,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\"\ : {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 200,\r\n \"\ hostCaching\": \"ReadOnly\",\r\n \"source\": {\r\n \"id\"\ @@ -1364,7 +1411,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:29:56 GMT + - Tue, 02 Feb 2021 09:04:32 GMT expires: - '-1' pragma: @@ -1395,7 +1442,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9/versions/1.0.0?api-version=2020-09-30 response: @@ -1406,7 +1453,7 @@ interactions: : {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East\ \ US\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\"\ : \"Standard_ZRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\ - \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-19T08:18:47.4159075+00:00\"\ + \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-02T08:52:23.2644364+00:00\"\ ,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\"\ : {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 200,\r\n \"\ hostCaching\": \"ReadOnly\",\r\n \"source\": {\r\n \"id\"\ @@ -1421,7 +1468,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:29:56 GMT + - Tue, 02 Feb 2021 09:04:33 GMT expires: - '-1' pragma: @@ -1452,7 +1499,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9?api-version=2020-09-30 response: @@ -1472,7 +1519,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:29:57 GMT + - Tue, 02 Feb 2021 09:04:33 GMT expires: - '-1' pragma: @@ -1489,7 +1536,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2989 + - Microsoft.Compute/GetGalleryImage3Min;597,Microsoft.Compute/GetGalleryImage30Min;2989 status: code: 200 message: OK @@ -1503,7 +1550,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/applications/applicationname10bb14a9?api-version=2020-09-30 response: @@ -1521,7 +1568,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:29:57 GMT + - Tue, 02 Feb 2021 09:04:33 GMT expires: - '-1' pragma: @@ -1538,7 +1585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGalleryApplication3Min;298,Microsoft.Compute/GetGalleryApplication30Min;1995 + - Microsoft.Compute/GetGalleryApplication3Min;299,Microsoft.Compute/GetGalleryApplication30Min;1995 status: code: 200 message: OK @@ -1552,7 +1599,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9?api-version=2020-09-30 response: @@ -1570,7 +1617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:29:57 GMT + - Tue, 02 Feb 2021 09:04:34 GMT expires: - '-1' pragma: @@ -1587,7 +1634,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2490 + - Microsoft.Compute/GetGallery3Min;349,Microsoft.Compute/GetGallery30Min;2490 status: code: 200 message: OK @@ -1607,7 +1654,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9/versions/1.0.0?api-version=2020-09-30 response: @@ -1618,7 +1665,7 @@ interactions: : {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East\ \ US\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\"\ : \"Standard_ZRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\ - \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-19T08:18:47.4159075+00:00\"\ + \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-02T08:52:23.2644364+00:00\"\ ,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\"\ : {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 200,\r\n \"\ hostCaching\": \"ReadOnly\",\r\n \"source\": {\r\n \"id\"\ @@ -1627,7 +1674,7 @@ interactions: \r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/c586eec2-d931-4a9b-9743-dd9780f8c4c4?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/820e0d0d-41ee-4e06-9247-5b385ecf9eaf?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1635,7 +1682,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:29:58 GMT + - Tue, 02 Feb 2021 09:04:34 GMT expires: - '-1' pragma: @@ -1654,7 +1701,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1189' status: code: 200 message: OK @@ -1668,13 +1715,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/c586eec2-d931-4a9b-9743-dd9780f8c4c4?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/820e0d0d-41ee-4e06-9247-5b385ecf9eaf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:29:59.1830808+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c586eec2-d931-4a9b-9743-dd9780f8c4c4\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:04:35.0326303+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"820e0d0d-41ee-4e06-9247-5b385ecf9eaf\"\ \r\n}" headers: cache-control: @@ -1684,7 +1731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:30:59 GMT + - Tue, 02 Feb 2021 09:05:35 GMT expires: - '-1' pragma: @@ -1701,7 +1748,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4173 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4171 status: code: 200 message: OK @@ -1715,13 +1762,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/c586eec2-d931-4a9b-9743-dd9780f8c4c4?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/820e0d0d-41ee-4e06-9247-5b385ecf9eaf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:29:59.1830808+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c586eec2-d931-4a9b-9743-dd9780f8c4c4\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:04:35.0326303+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"820e0d0d-41ee-4e06-9247-5b385ecf9eaf\"\ \r\n}" headers: cache-control: @@ -1731,7 +1778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:32:00 GMT + - Tue, 02 Feb 2021 09:06:36 GMT expires: - '-1' pragma: @@ -1748,7 +1795,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4172 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4170 status: code: 200 message: OK @@ -1762,14 +1809,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/c586eec2-d931-4a9b-9743-dd9780f8c4c4?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/820e0d0d-41ee-4e06-9247-5b385ecf9eaf?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:29:59.1830808+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:32:29.3393382+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"c586eec2-d931-4a9b-9743-dd9780f8c4c4\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:04:35.0326303+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:07:05.2048273+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"820e0d0d-41ee-4e06-9247-5b385ecf9eaf\"\r\n}" headers: cache-control: - no-cache @@ -1778,7 +1825,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:33:01 GMT + - Tue, 02 Feb 2021 09:07:36 GMT expires: - '-1' pragma: @@ -1795,7 +1842,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4171 + - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4169 status: code: 200 message: OK @@ -1809,7 +1856,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9/versions/1.0.0?api-version=2020-09-30 response: @@ -1820,7 +1867,7 @@ interactions: : {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East\ \ US\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\"\ : \"Standard_ZRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\ - \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-01-19T08:18:47.4159075+00:00\"\ + \n \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-02-02T08:52:23.2644364+00:00\"\ ,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\"\ : {\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 200,\r\n \"\ hostCaching\": \"ReadOnly\",\r\n \"source\": {\r\n \"id\"\ @@ -1835,7 +1882,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:33:02 GMT + - Tue, 02 Feb 2021 09:07:36 GMT expires: - '-1' pragma: @@ -1871,7 +1918,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9?api-version=2020-09-30 response: @@ -1885,7 +1932,7 @@ interactions: \n \"provisioningState\": \"Updating\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/1da567ab-441e-4f3c-9d42-1f5bdb475186?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/ae5cc693-b973-4bfe-b4bf-76f15843051a?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -1893,7 +1940,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:33:02 GMT + - Tue, 02 Feb 2021 09:07:37 GMT expires: - '-1' pragma: @@ -1912,7 +1959,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;748 x-ms-ratelimit-remaining-subscription-writes: - - '1192' + - '1188' status: code: 200 message: OK @@ -1926,14 +1973,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/1da567ab-441e-4f3c-9d42-1f5bdb475186?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/ae5cc693-b973-4bfe-b4bf-76f15843051a?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:33:02.5576305+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:33:02.6200403+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"1da567ab-441e-4f3c-9d42-1f5bdb475186\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:07:37.7831371+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:07:37.8144137+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"ae5cc693-b973-4bfe-b4bf-76f15843051a\"\r\n}" headers: cache-control: - no-cache @@ -1942,7 +1989,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:33:32 GMT + - Tue, 02 Feb 2021 09:08:07 GMT expires: - '-1' pragma: @@ -1959,7 +2006,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4170 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4168 status: code: 200 message: OK @@ -1973,7 +2020,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9?api-version=2020-09-30 response: @@ -1993,7 +2040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:33:33 GMT + - Tue, 02 Feb 2021 09:08:07 GMT expires: - '-1' pragma: @@ -2030,7 +2077,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/applications/applicationname10bb14a9?api-version=2020-09-30 response: @@ -2049,7 +2096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:33:33 GMT + - Tue, 02 Feb 2021 09:08:08 GMT expires: - '-1' pragma: @@ -2068,7 +2115,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGalleryApplication3Min;149,Microsoft.Compute/CreateUpdateGalleryApplication30Min;748 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1187' status: code: 200 message: OK @@ -2086,7 +2133,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9?api-version=2020-09-30 response: @@ -2099,7 +2146,7 @@ interactions: \r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/336191be-2eeb-417b-a69e-008473e586c5?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/afb3f635-acf1-48e0-92b4-3f4de11a3e08?api-version=2020-09-30 cache-control: - no-cache content-length: @@ -2107,7 +2154,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:33:34 GMT + - Tue, 02 Feb 2021 09:08:08 GMT expires: - '-1' pragma: @@ -2126,7 +2173,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;298 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1186' status: code: 200 message: OK @@ -2140,14 +2187,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/336191be-2eeb-417b-a69e-008473e586c5?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/afb3f635-acf1-48e0-92b4-3f4de11a3e08?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:33:34.3232744+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:33:34.3545009+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"336191be-2eeb-417b-a69e-008473e586c5\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:08:09.6115862+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:08:09.6427533+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"afb3f635-acf1-48e0-92b4-3f4de11a3e08\"\r\n}" headers: cache-control: - no-cache @@ -2156,7 +2203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:34:04 GMT + - Tue, 02 Feb 2021 09:08:40 GMT expires: - '-1' pragma: @@ -2173,7 +2220,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4169 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4167 status: code: 200 message: OK @@ -2187,7 +2234,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9?api-version=2020-09-30 response: @@ -2205,7 +2252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:34:04 GMT + - Tue, 02 Feb 2021 09:08:40 GMT expires: - '-1' pragma: @@ -2238,7 +2285,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9/versions/1.0.0?api-version=2020-09-30 response: @@ -2246,17 +2293,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/97d73ef9-2ac1-4474-9507-1de0715c6147?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/78d242e0-6bb5-4b03-825f-41b574a30c75?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:34:05 GMT + - Tue, 02 Feb 2021 09:08:41 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/97d73ef9-2ac1-4474-9507-1de0715c6147?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/78d242e0-6bb5-4b03-825f-41b574a30c75?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2269,7 +2316,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999 x-ms-ratelimit-remaining-subscription-deletes: - - '14999' + - '14997' status: code: 202 message: Accepted @@ -2283,13 +2330,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/97d73ef9-2ac1-4474-9507-1de0715c6147?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/78d242e0-6bb5-4b03-825f-41b574a30c75?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:34:05.9330153+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"97d73ef9-2ac1-4474-9507-1de0715c6147\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:08:41.2678688+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"78d242e0-6bb5-4b03-825f-41b574a30c75\"\ \r\n}" headers: cache-control: @@ -2299,7 +2346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:35:06 GMT + - Tue, 02 Feb 2021 09:09:41 GMT expires: - '-1' pragma: @@ -2316,7 +2363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4168 + - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4166 status: code: 200 message: OK @@ -2330,14 +2377,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/97d73ef9-2ac1-4474-9507-1de0715c6147?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/78d242e0-6bb5-4b03-825f-41b574a30c75?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:34:05.9330153+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:35:36.1987892+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"97d73ef9-2ac1-4474-9507-1de0715c6147\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:08:41.2678688+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:10:11.5806888+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"78d242e0-6bb5-4b03-825f-41b574a30c75\"\r\n}" headers: cache-control: - no-cache @@ -2346,7 +2393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:36:08 GMT + - Tue, 02 Feb 2021 09:10:41 GMT expires: - '-1' pragma: @@ -2363,7 +2410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4166 + - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4164 status: code: 200 message: OK @@ -2379,7 +2426,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/applications/applicationname10bb14a9?api-version=2020-09-30 response: @@ -2391,7 +2438,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:36:08 GMT + - Tue, 02 Feb 2021 09:10:42 GMT expires: - '-1' pragma: @@ -2406,7 +2453,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGalleryApplication3Min;49,Microsoft.Compute/DeleteGalleryApplication30Min;299 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14996' status: code: 200 message: OK @@ -2422,7 +2469,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotname10bb14a9/endGetAccess?api-version=2020-09-30 response: @@ -2430,17 +2477,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/23dd8fe7-a6a9-4a0a-80d7-889f1b2634af?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c62d8389-1a2a-4e55-bdfc-f233e469e8a5?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:36:09 GMT + - Tue, 02 Feb 2021 09:10:43 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/23dd8fe7-a6a9-4a0a-80d7-889f1b2634af?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c62d8389-1a2a-4e55-bdfc-f233e469e8a5?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2453,7 +2500,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7994 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1196' status: code: 202 message: Accepted @@ -2467,23 +2514,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/23dd8fe7-a6a9-4a0a-80d7-889f1b2634af?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c62d8389-1a2a-4e55-bdfc-f233e469e8a5?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:36:08.9229405+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:36:09.110446+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"23dd8fe7-a6a9-4a0a-80d7-889f1b2634af\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:10:43.5712088+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:10:43.7274289+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"c62d8389-1a2a-4e55-bdfc-f233e469e8a5\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:36:39 GMT + - Tue, 02 Feb 2021 09:11:13 GMT expires: - '-1' pragma: @@ -2500,7 +2547,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399925 + - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399939 status: code: 200 message: OK @@ -2514,9 +2561,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/23dd8fe7-a6a9-4a0a-80d7-889f1b2634af?monitor=true&api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/c62d8389-1a2a-4e55-bdfc-f233e469e8a5?monitor=true&api-version=2020-09-30 response: body: string: '' @@ -2526,7 +2573,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:36:39 GMT + - Tue, 02 Feb 2021 09:11:13 GMT expires: - '-1' pragma: @@ -2539,7 +2586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399924 + - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399938 status: code: 200 message: OK @@ -2555,7 +2602,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/snapshots/snapshotname10bb14a9?api-version=2020-09-30 response: @@ -2563,17 +2610,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3c981306-7b47-4453-a4c4-63307d16fc65?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d02b3d33-763f-4dfe-9b3d-f81186f846fe?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:36:40 GMT + - Tue, 02 Feb 2021 09:11:14 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3c981306-7b47-4453-a4c4-63307d16fc65?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d02b3d33-763f-4dfe-9b3d-f81186f846fe?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2584,9 +2631,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteDisks3Min;996,Microsoft.Compute/DeleteDisks30Min;7989 + - Microsoft.Compute/DeleteDisks3Min;996,Microsoft.Compute/DeleteDisks30Min;7990 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14995' status: code: 202 message: Accepted @@ -2600,23 +2647,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/3c981306-7b47-4453-a4c4-63307d16fc65?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/DiskOperations/d02b3d33-763f-4dfe-9b3d-f81186f846fe?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:36:40.5965656+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:36:40.9090761+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"3c981306-7b47-4453-a4c4-63307d16fc65\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:11:15.2124657+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:11:15.446884+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"d02b3d33-763f-4dfe-9b3d-f81186f846fe\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:37:10 GMT + - Tue, 02 Feb 2021 09:11:44 GMT expires: - '-1' pragma: @@ -2633,7 +2680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399922 + - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399936 status: code: 200 message: OK @@ -2649,7 +2696,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9/images/imagex10bb14a9?api-version=2020-09-30 response: @@ -2657,17 +2704,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/ff7ddb73-05bb-4786-971e-458ff21f8f7f?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/5eff650b-9798-4806-b9cc-9a47635587ce?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:37:12 GMT + - Tue, 02 Feb 2021 09:11:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/ff7ddb73-05bb-4786-971e-458ff21f8f7f?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/5eff650b-9798-4806-b9cc-9a47635587ce?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2680,7 +2727,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299 x-ms-ratelimit-remaining-subscription-deletes: - - '14996' + - '14994' status: code: 202 message: Accepted @@ -2694,14 +2741,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/ff7ddb73-05bb-4786-971e-458ff21f8f7f?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/5eff650b-9798-4806-b9cc-9a47635587ce?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:37:12.4957276+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:37:12.7613565+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"ff7ddb73-05bb-4786-971e-458ff21f8f7f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:11:47.1438377+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:11:47.4094655+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"5eff650b-9798-4806-b9cc-9a47635587ce\"\r\n}" headers: cache-control: - no-cache @@ -2710,7 +2757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:37:42 GMT + - Tue, 02 Feb 2021 09:12:17 GMT expires: - '-1' pragma: @@ -2727,7 +2774,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4163 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4161 status: code: 200 message: OK @@ -2743,7 +2790,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/galleries/galleryname10bb14a9?api-version=2020-09-30 response: @@ -2751,17 +2798,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/3376ad10-7ff1-4472-a781-7f2994c8d66c?api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/05f34615-7588-4e28-b12a-5563696fbdb7?api-version=2020-09-30 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:37:43 GMT + - Tue, 02 Feb 2021 09:12:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/3376ad10-7ff1-4472-a781-7f2994c8d66c?monitor=true&api-version=2020-09-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/05f34615-7588-4e28-b12a-5563696fbdb7?monitor=true&api-version=2020-09-30 pragma: - no-cache server: @@ -2774,7 +2821,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteGallery3Min;49,Microsoft.Compute/DeleteGallery30Min;299 x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14993' status: code: 202 message: Accepted @@ -2788,23 +2835,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/3376ad10-7ff1-4472-a781-7f2994c8d66c?api-version=2020-09-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/capsOperations/05f34615-7588-4e28-b12a-5563696fbdb7?api-version=2020-09-30 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:37:43.7926357+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:37:44.5426095+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"3376ad10-7ff1-4472-a781-7f2994c8d66c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:12:18.456489+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:12:19.1595495+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"05f34615-7588-4e28-b12a-5563696fbdb7\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:38:14 GMT + - Tue, 02 Feb 2021 09:12:50 GMT expires: - '-1' pragma: @@ -2821,7 +2868,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4161 + - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4159 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm.yaml index c28308cc9471..b1984e29a4e4 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff\"\ - ,\r\n \"etag\": \"W/\\\"40f1b0c3-ebe7-41f2-9cd5-d195c6d400f0\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"10a8e56b-eb33-4ff7-a503-df3769b6f512\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"c3381716-710e-46b4-84d5-64bea9f0aec4\",\r\n \"\ + \ \"resourceGuid\": \"807fd917-407f-4def-ac04-4ebe77090074\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a902238b-6401-47c7-8926-4b88990629d1?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/68418f43-3489-47fb-af7f-b36051199842?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:38:32 GMT + - Tue, 02 Feb 2021 09:13:12 GMT expires: - '-1' pragma: @@ -53,9 +53,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b1e3e58-042b-4567-8a90-a2dab95f4275 + - c695538e-7ab7-4597-9cb1-f7141180544b x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/a902238b-6401-47c7-8926-4b88990629d1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/68418f43-3489-47fb-af7f-b36051199842?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:38:35 GMT + - Tue, 02 Feb 2021 09:13:15 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cb33e392-3f59-4688-9aad-b06772d33b61 + - 674195a1-2c5e-4673-b81b-65f05a999ed7 status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff\"\ - ,\r\n \"etag\": \"W/\\\"5f3b38fa-c67e-45b0-b70a-0b792fdd6577\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"fdb4c441-56a2-4f0d-9eaa-cbc1d32ac8e1\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"c3381716-710e-46b4-84d5-64bea9f0aec4\",\r\n \"\ + \ \"resourceGuid\": \"807fd917-407f-4def-ac04-4ebe77090074\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:38:36 GMT + - Tue, 02 Feb 2021 09:13:16 GMT etag: - - W/"5f3b38fa-c67e-45b0-b70a-0b792fdd6577" + - W/"fdb4c441-56a2-4f0d-9eaa-cbc1d32ac8e1" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 30619403-32d8-4ad4-84d5-788868b5a94c + - 274ddf5e-ca46-4e01-b3b7-e874453f76ba status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff/subnets/subnetx15cf0eff?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff/subnets/subnetx15cf0eff?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetx15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff/subnets/subnetx15cf0eff\"\ - ,\r\n \"etag\": \"W/\\\"44dfc2d5-5e9b-47f3-b5ba-164ae8a33a4f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"022f3308-e509-4201-9a94-45674a77f006\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d20d1951-7076-4cae-8837-249089d53842?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0b447de4-f459-48a0-8565-823f9f5c3b36?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:38:36 GMT + - Tue, 02 Feb 2021 09:13:16 GMT expires: - '-1' pragma: @@ -207,9 +207,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e1685e47-a059-44d7-a35b-63fed0b4f521 + - 930eb9c5-e6c3-47d3-84b2-b858dcf9640f x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/d20d1951-7076-4cae-8837-249089d53842?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0b447de4-f459-48a0-8565-823f9f5c3b36?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:38:40 GMT + - Tue, 02 Feb 2021 09:13:19 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6e5098e2-f55d-46aa-9ed5-a936173c671a + - 94cbedaf-e71c-43c7-b06e-680db0496b1a status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff/subnets/subnetx15cf0eff?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff/subnets/subnetx15cf0eff?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetx15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex15cf0eff/subnets/subnetx15cf0eff\"\ - ,\r\n \"etag\": \"W/\\\"db6a4ba7-bd22-45e7-b2fc-9eb36ebc0f07\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"ef4e11f2-936c-4693-bcc0-22df29973ec8\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:38:40 GMT + - Tue, 02 Feb 2021 09:13:20 GMT etag: - - W/"db6a4ba7-bd22-45e7-b2fc-9eb36ebc0f07" + - W/"ef4e11f2-936c-4693-bcc0-22df29973ec8" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bf87fa56-4395-46bc-b122-82ca645753b1 + - 50cb0411-d33e-42b4-9e7a-aaee7365df6b status: code: 200 message: OK @@ -325,18 +325,18 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex15cf0eff?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex15cf0eff?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"interfacex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex15cf0eff\"\ - ,\r\n \"etag\": \"W/\\\"e0b6ce3f-1ca0-4e44-9d33-013ce0bade12\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"ef0f8232-f9b5-400e-ae9f-9d132682014d\\\"\",\r\n \ \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"0d5b490d-3be0-4cd4-955e-8c96344674f3\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"ae8548f3-6d9c-406d-aa8f-d774acb813df\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"MyIpConfig\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex15cf0eff/ipConfigurations/MyIpConfig\"\ - ,\r\n \"etag\": \"W/\\\"e0b6ce3f-1ca0-4e44-9d33-013ce0bade12\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ef0f8232-f9b5-400e-ae9f-9d132682014d\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -344,7 +344,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"cyltrqyoog0enbgvms5kt2foye.bx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"c5mx5ad5idxu1laej05hociaoe.bx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ \n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ @@ -353,7 +353,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/58170cd5-7616-4ae4-ac94-f470da7528bc?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1cad12ba-6695-4d5c-a599-d0e1b517870a?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:38:45 GMT + - Tue, 02 Feb 2021 09:13:24 GMT expires: - '-1' pragma: @@ -374,9 +374,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 80373a62-b750-4a14-a394-af193b60f3f0 + - 006753da-e2a9-4985-a211-cc1c287fae74 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 201 message: Created @@ -390,9 +390,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/58170cd5-7616-4ae4-ac94-f470da7528bc?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1cad12ba-6695-4d5c-a599-d0e1b517870a?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -404,7 +404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:39:16 GMT + - Tue, 02 Feb 2021 09:13:55 GMT expires: - '-1' pragma: @@ -421,7 +421,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1135c4aa-3d84-4b81-b37b-30baa7d8a140 + - 7de78c31-6ddd-4a77-96c8-76161a42dc39 status: code: 200 message: OK @@ -435,18 +435,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex15cf0eff?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex15cf0eff?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"interfacex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex15cf0eff\"\ - ,\r\n \"etag\": \"W/\\\"e0b6ce3f-1ca0-4e44-9d33-013ce0bade12\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"ef0f8232-f9b5-400e-ae9f-9d132682014d\\\"\",\r\n \ \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"0d5b490d-3be0-4cd4-955e-8c96344674f3\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"ae8548f3-6d9c-406d-aa8f-d774acb813df\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"MyIpConfig\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex15cf0eff/ipConfigurations/MyIpConfig\"\ - ,\r\n \"etag\": \"W/\\\"e0b6ce3f-1ca0-4e44-9d33-013ce0bade12\\\"\"\ + ,\r\n \"etag\": \"W/\\\"ef0f8232-f9b5-400e-ae9f-9d132682014d\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -454,7 +454,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"cyltrqyoog0enbgvms5kt2foye.bx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"c5mx5ad5idxu1laej05hociaoe.bx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ \n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ @@ -467,9 +467,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:39:16 GMT + - Tue, 02 Feb 2021 09:13:55 GMT etag: - - W/"e0b6ce3f-1ca0-4e44-9d33-013ce0bade12" + - W/"ef0f8232-f9b5-400e-ae9f-9d132682014d" expires: - '-1' pragma: @@ -486,7 +486,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 85389966-12c4-4844-b249-52727143bd2a + - f9150cbe-4790-468a-a6d8-c7bae2e4f86b status: code: 200 message: OK @@ -513,19 +513,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"1b280b2d-9b5e-4914-908a-05ca631a1c52\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9e88c484-f38c-4c22-a474-1b26b061031c\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ @@ -552,15 +553,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3bb6e2a1-b46e-4cae-a457-db6396596cce?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2317' + - '2424' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:39:25 GMT + - Tue, 02 Feb 2021 09:14:05 GMT expires: - '-1' pragma: @@ -575,7 +576,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -589,13 +590,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3bb6e2a1-b46e-4cae-a457-db6396596cce?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:39:23.5206698+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3bb6e2a1-b46e-4cae-a457-db6396596cce\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:14:04.2672075+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0eef3125-f62b-4987-ba35-d29ecba46000\"\ \r\n}" headers: cache-control: @@ -605,7 +606,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:39:35 GMT + - Tue, 02 Feb 2021 09:14:16 GMT expires: - '-1' pragma: @@ -636,13 +637,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3bb6e2a1-b46e-4cae-a457-db6396596cce?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:39:23.5206698+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3bb6e2a1-b46e-4cae-a457-db6396596cce\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:14:04.2672075+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0eef3125-f62b-4987-ba35-d29ecba46000\"\ \r\n}" headers: cache-control: @@ -652,7 +653,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:40:26 GMT + - Tue, 02 Feb 2021 09:15:06 GMT expires: - '-1' pragma: @@ -669,7 +670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29996 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998 status: code: 200 message: OK @@ -683,14 +684,249 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3bb6e2a1-b46e-4cae-a457-db6396596cce?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:39:23.5206698+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:40:48.1444473+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"3bb6e2a1-b46e-4cae-a457-db6396596cce\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:14:04.2672075+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0eef3125-f62b-4987-ba35-d29ecba46000\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:15:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:14:04.2672075+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0eef3125-f62b-4987-ba35-d29ecba46000\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:16:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:14:04.2672075+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0eef3125-f62b-4987-ba35-d29ecba46000\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:16:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:14:04.2672075+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0eef3125-f62b-4987-ba35-d29ecba46000\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:17:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:14:04.2672075+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0eef3125-f62b-4987-ba35-d29ecba46000\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:17:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29992 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0eef3125-f62b-4987-ba35-d29ecba46000?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:14:04.2672075+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:17:54.8143817+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"0eef3125-f62b-4987-ba35-d29ecba46000\"\r\n}" headers: cache-control: - no-cache @@ -699,7 +935,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:40:56 GMT + - Tue, 02 Feb 2021 09:18:08 GMT expires: - '-1' pragma: @@ -716,7 +952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29994 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990 status: code: 200 message: OK @@ -730,35 +966,36 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"1b280b2d-9b5e-4914-908a-05ca631a1c52\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9e88c484-f38c-4c22-a474-1b26b061031c\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Standard_LRS\",\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + name\": \"virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"myVM\",\r\n \"adminUsername\": \"testuser\",\r\ @@ -774,11 +1011,11 @@ interactions: cache-control: - no-cache content-length: - - '3220' + - '3327' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:40:56 GMT + - Tue, 02 Feb 2021 09:18:09 GMT expires: - '-1' pragma: @@ -795,7 +1032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31995 + - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998 status: code: 200 message: OK @@ -815,7 +1052,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/extensions/virtualmachineextensionx15cf0eff?api-version=2020-06-01 response: @@ -831,7 +1068,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/965868b2-b3f9-466d-91a7-710b74bd6a6c?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6165ceca-c6b3-46c7-b22b-3f31674098a0?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -839,7 +1076,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:41:03 GMT + - Tue, 02 Feb 2021 09:18:16 GMT expires: - '-1' pragma: @@ -854,7 +1091,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1199 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -868,60 +1105,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/965868b2-b3f9-466d-91a7-710b74bd6a6c?api-version=2020-06-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-01-19T08:41:02.8165927+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"965868b2-b3f9-466d-91a7-710b74bd6a6c\"\ - \r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 08:41:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29993 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/965868b2-b3f9-466d-91a7-710b74bd6a6c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6165ceca-c6b3-46c7-b22b-3f31674098a0?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:41:02.8165927+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"965868b2-b3f9-466d-91a7-710b74bd6a6c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:18:15.1738056+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6165ceca-c6b3-46c7-b22b-3f31674098a0\"\ \r\n}" headers: cache-control: @@ -931,7 +1121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:42:04 GMT + - Tue, 02 Feb 2021 09:18:46 GMT expires: - '-1' pragma: @@ -948,7 +1138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29992 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29989 status: code: 200 message: OK @@ -962,13 +1152,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/965868b2-b3f9-466d-91a7-710b74bd6a6c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6165ceca-c6b3-46c7-b22b-3f31674098a0?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:41:02.8165927+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"965868b2-b3f9-466d-91a7-710b74bd6a6c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:18:15.1738056+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6165ceca-c6b3-46c7-b22b-3f31674098a0\"\ \r\n}" headers: cache-control: @@ -978,7 +1168,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:42:35 GMT + - Tue, 02 Feb 2021 09:19:17 GMT expires: - '-1' pragma: @@ -995,7 +1185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29991 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29988 status: code: 200 message: OK @@ -1009,14 +1199,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/965868b2-b3f9-466d-91a7-710b74bd6a6c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6165ceca-c6b3-46c7-b22b-3f31674098a0?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:41:02.8165927+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:42:42.9422531+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"965868b2-b3f9-466d-91a7-710b74bd6a6c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:18:15.1738056+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:19:40.5020125+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"6165ceca-c6b3-46c7-b22b-3f31674098a0\"\r\n}" headers: cache-control: - no-cache @@ -1025,7 +1215,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:05 GMT + - Tue, 02 Feb 2021 09:19:48 GMT expires: - '-1' pragma: @@ -1042,7 +1232,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29989 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29986 status: code: 200 message: OK @@ -1056,7 +1246,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/extensions/virtualmachineextensionx15cf0eff?api-version=2020-06-01 response: @@ -1076,7 +1266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:05 GMT + - Tue, 02 Feb 2021 09:19:48 GMT expires: - '-1' pragma: @@ -1093,7 +1283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31993 + - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31996 status: code: 200 message: OK @@ -1107,18 +1297,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/instanceView?api-version=2020-06-01 response: body: string: "{\r\n \"computerName\": \"myVM\",\r\n \"osName\": \"Windows Server\ \ 2016 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 10.0.14393.0\"\ - ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1005\",\r\n \ + ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"GuestAgent is running and processing the extensions.\"\ - ,\r\n \"time\": \"2021-01-19T08:43:05+00:00\"\r\n }\r\n ],\r\ + ,\r\n \"time\": \"2021-02-02T09:19:48+00:00\"\r\n }\r\n ],\r\ \n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.NetworkWatcher.NetworkWatcherAgentWindows\"\ ,\r\n \"typeHandlerVersion\": \"1.4.1693.1\",\r\n \"status\"\ : {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"\ @@ -1128,15 +1318,15 @@ interactions: \ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"myVMosdisk\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T08:39:25.4737538+00:00\"\ - \r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T09:14:06.0953514+00:00\"\ + \r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T08:39:25.4737538+00:00\"\ - \r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T09:14:06.0953514+00:00\"\ + \r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T08:39:25.4737538+00:00\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T09:14:06.0953514+00:00\"\ \r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\ \n \"name\": \"virtualmachineextensionx15cf0eff\",\r\n \"type\"\ : \"Microsoft.Azure.NetworkWatcher.NetworkWatcherAgentWindows\",\r\n \ @@ -1148,7 +1338,7 @@ interactions: \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n \ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ : \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T08:42:42.9266303+00:00\"\r\n },\r\n {\r\n\ + \ \"time\": \"2021-02-02T09:19:40.4863892+00:00\"\r\n },\r\n {\r\n\ \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n\ \ \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -1159,7 +1349,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:06 GMT + - Tue, 02 Feb 2021 09:19:48 GMT expires: - '-1' pragma: @@ -1176,7 +1366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31992 + - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995 status: code: 200 message: OK @@ -1190,7 +1380,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/extensions/virtualmachineextensionx15cf0eff?api-version=2020-06-01 response: @@ -1210,7 +1400,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:06 GMT + - Tue, 02 Feb 2021 09:19:49 GMT expires: - '-1' pragma: @@ -1227,7 +1417,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31991 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31994 status: code: 200 message: OK @@ -1241,7 +1431,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/runCommands/RunPowerShellScript?api-version=2020-06-01 response: @@ -1265,7 +1455,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:06 GMT + - Tue, 02 Feb 2021 09:19:49 GMT expires: - '-1' pragma: @@ -1296,7 +1486,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/extensions?api-version=2020-06-01 response: @@ -1317,7 +1507,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:07 GMT + - Tue, 02 Feb 2021 09:19:49 GMT expires: - '-1' pragma: @@ -1334,7 +1524,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31990 + - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31993 status: code: 200 message: OK @@ -1348,35 +1538,36 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff?$expand=instanceView&api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"1b280b2d-9b5e-4914-908a-05ca631a1c52\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9e88c484-f38c-4c22-a474-1b26b061031c\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Standard_LRS\",\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + name\": \"virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"myVM\",\r\n \"adminUsername\": \"testuser\",\r\ @@ -1390,11 +1581,11 @@ interactions: ,\r\n \"instanceView\": {\r\n \"computerName\": \"myVM\",\r\n \ \ \"osName\": \"Windows Server 2016 Datacenter\",\r\n \"osVersion\"\ : \"Microsoft Windows NT 10.0.14393.0\",\r\n \"vmAgent\": {\r\n \ - \ \"vmAgentVersion\": \"2.7.41491.1005\",\r\n \"statuses\": [\r\n\ + \ \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \"statuses\": [\r\n\ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n\ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"GuestAgent is running and processing the extensions.\"\ - ,\r\n \"time\": \"2021-01-19T08:43:05+00:00\"\r\n }\r\n\ + ,\r\n \"time\": \"2021-02-02T09:19:48+00:00\"\r\n }\r\n\ \ ],\r\n \"extensionHandlers\": [\r\n {\r\n \ \ \"type\": \"Microsoft.Azure.NetworkWatcher.NetworkWatcherAgentWindows\"\ ,\r\n \"typeHandlerVersion\": \"1.4.1693.1\",\r\n \"\ @@ -1406,18 +1597,18 @@ interactions: \ \"name\": \"myVMosdisk\",\r\n \"statuses\": [\r\n \ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T08:39:25.4737538+00:00\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T09:14:06.0953514+00:00\"\ \r\n }\r\n ]\r\n },\r\n {\r\n \"\ - name\": \"virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + name\": \"virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T08:39:25.4737538+00:00\"\r\n }\r\ - \n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + \ \"time\": \"2021-02-02T09:14:06.0953514+00:00\"\r\n }\r\ + \n ]\r\n },\r\n {\r\n \"name\": \"virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T08:39:25.4737538+00:00\"\r\n }\r\ + \ \"time\": \"2021-02-02T09:14:06.0953514+00:00\"\r\n }\r\ \n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n \ \ {\r\n \"name\": \"virtualmachineextensionx15cf0eff\",\r\n \ \ \"type\": \"Microsoft.Azure.NetworkWatcher.NetworkWatcherAgentWindows\"\ @@ -1430,7 +1621,7 @@ interactions: \ ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T08:42:42.9266303+00:00\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T09:19:40.4863892+00:00\"\ \r\n },\r\n {\r\n \"code\": \"PowerState/running\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\ \r\n }\r\n ]\r\n }\r\n },\r\n \"resources\": [\r\n {\r\ @@ -1446,11 +1637,11 @@ interactions: cache-control: - no-cache content-length: - - '7132' + - '7239' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:07 GMT + - Tue, 02 Feb 2021 09:19:50 GMT expires: - '-1' pragma: @@ -1467,7 +1658,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31989 + - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992 status: code: 200 message: OK @@ -1485,7 +1676,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/runCommand?api-version=2020-06-01 response: @@ -1493,17 +1684,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e4dae8e-2011-48b2-8a64-f615899ef09e?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/267c674a-b652-4072-a51d-de98b7f0a2c1?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:43:08 GMT + - Tue, 02 Feb 2021 09:19:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e4dae8e-2011-48b2-8a64-f615899ef09e?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/267c674a-b652-4072-a51d-de98b7f0a2c1?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1530,13 +1721,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e4dae8e-2011-48b2-8a64-f615899ef09e?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/267c674a-b652-4072-a51d-de98b7f0a2c1?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:43:08.0831722+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:43:38.4579522+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:19:50.6582647+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:20:21.0176842+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\r\n \"value\": [\r\n {\r\ \n \"code\": \"ComponentStatus/StdOut/succeeded\",\r\n \"level\"\ : \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \ @@ -1544,7 +1735,7 @@ interactions: \n {\r\n \"code\": \"ComponentStatus/StdErr/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ ,\r\n \"message\": \"\"\r\n }\r\n ]\r\n}\r\n },\r\n \"name\": \"\ - 3e4dae8e-2011-48b2-8a64-f615899ef09e\"\r\n}" + 267c674a-b652-4072-a51d-de98b7f0a2c1\"\r\n}" headers: cache-control: - no-cache @@ -1553,7 +1744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:38 GMT + - Tue, 02 Feb 2021 09:20:20 GMT expires: - '-1' pragma: @@ -1570,7 +1761,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29987 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29984 status: code: 200 message: OK @@ -1584,9 +1775,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3e4dae8e-2011-48b2-8a64-f615899ef09e?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/267c674a-b652-4072-a51d-de98b7f0a2c1?monitor=true&api-version=2020-06-01 response: body: string: '{"value":[{"code":"ComponentStatus/StdOut/succeeded","level":"Info","displayStatus":"Provisioning @@ -1600,7 +1791,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:43:38 GMT + - Tue, 02 Feb 2021 09:20:21 GMT expires: - '-1' pragma: @@ -1617,7 +1808,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29986 + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -1633,7 +1824,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/restart?api-version=2020-06-01 response: @@ -1641,17 +1832,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3bc14f29-f3f3-4df3-ad3b-f73941ab9eda?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/172fc7b0-56b5-442e-b760-77ace15f068d?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:43:39 GMT + - Tue, 02 Feb 2021 09:20:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3bc14f29-f3f3-4df3-ad3b-f73941ab9eda?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/172fc7b0-56b5-442e-b760-77ace15f068d?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1678,23 +1869,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3bc14f29-f3f3-4df3-ad3b-f73941ab9eda?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/172fc7b0-56b5-442e-b760-77ace15f068d?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:43:39.2235598+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:43:39.4422932+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"3bc14f29-f3f3-4df3-ad3b-f73941ab9eda\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:20:21.8145631+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:20:22.033316+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"172fc7b0-56b5-442e-b760-77ace15f068d\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:44:09 GMT + - Tue, 02 Feb 2021 09:20:51 GMT expires: - '-1' pragma: @@ -1711,7 +1902,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29983 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -1725,9 +1916,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3bc14f29-f3f3-4df3-ad3b-f73941ab9eda?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/172fc7b0-56b5-442e-b760-77ace15f068d?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -1737,7 +1928,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:44:09 GMT + - Tue, 02 Feb 2021 09:20:52 GMT expires: - '-1' pragma: @@ -1750,7 +1941,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29982 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29979 status: code: 200 message: OK @@ -1766,7 +1957,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/powerOff?skipShutdown=false&api-version=2020-06-01 response: @@ -1774,17 +1965,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e839ed90-1e11-4c5a-a829-81ce3ca79e01?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed45b0d2-7fb6-48d6-8d8d-2b6e3cec1577?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:44:09 GMT + - Tue, 02 Feb 2021 09:20:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e839ed90-1e11-4c5a-a829-81ce3ca79e01?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed45b0d2-7fb6-48d6-8d8d-2b6e3cec1577?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1795,7 +1986,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1196 + - Microsoft.Compute/UpdateVM3Min;236,Microsoft.Compute/UpdateVM30Min;1196 x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -1811,14 +2002,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e839ed90-1e11-4c5a-a829-81ce3ca79e01?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed45b0d2-7fb6-48d6-8d8d-2b6e3cec1577?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:44:10.2704621+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:44:14.8173865+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"e839ed90-1e11-4c5a-a829-81ce3ca79e01\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:20:52.9083674+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:20:53.0958699+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"ed45b0d2-7fb6-48d6-8d8d-2b6e3cec1577\"\r\n}" headers: cache-control: - no-cache @@ -1827,7 +2018,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:44:40 GMT + - Tue, 02 Feb 2021 09:21:22 GMT expires: - '-1' pragma: @@ -1844,7 +2035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29980 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -1858,9 +2049,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e839ed90-1e11-4c5a-a829-81ce3ca79e01?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed45b0d2-7fb6-48d6-8d8d-2b6e3cec1577?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -1870,7 +2061,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:44:40 GMT + - Tue, 02 Feb 2021 09:21:22 GMT expires: - '-1' pragma: @@ -1883,7 +2074,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29979 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29976 status: code: 200 message: OK @@ -1899,7 +2090,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/start?api-version=2020-06-01 response: @@ -1907,17 +2098,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ab3b5ebf-dfe4-488a-92e0-ed7ab8ac916e?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5f0a1fec-3f37-40d0-b332-2a1aa38d6d1e?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:44:41 GMT + - Tue, 02 Feb 2021 09:21:23 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ab3b5ebf-dfe4-488a-92e0-ed7ab8ac916e?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5f0a1fec-3f37-40d0-b332-2a1aa38d6d1e?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1944,14 +2135,61 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5f0a1fec-3f37-40d0-b332-2a1aa38d6d1e?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:21:23.9865268+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"5f0a1fec-3f37-40d0-b332-2a1aa38d6d1e\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:21:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29975 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ab3b5ebf-dfe4-488a-92e0-ed7ab8ac916e?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5f0a1fec-3f37-40d0-b332-2a1aa38d6d1e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:44:41.7081974+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:44:47.2394339+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"ab3b5ebf-dfe4-488a-92e0-ed7ab8ac916e\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:21:23.9865268+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:21:41.6584525+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"5f0a1fec-3f37-40d0-b332-2a1aa38d6d1e\"\r\n}" headers: cache-control: - no-cache @@ -1960,7 +2198,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:44:52 GMT + - Tue, 02 Feb 2021 09:21:42 GMT expires: - '-1' pragma: @@ -1977,7 +2215,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29978 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29973 status: code: 200 message: OK @@ -1991,9 +2229,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ab3b5ebf-dfe4-488a-92e0-ed7ab8ac916e?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5f0a1fec-3f37-40d0-b332-2a1aa38d6d1e?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2003,7 +2241,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:44:52 GMT + - Tue, 02 Feb 2021 09:21:43 GMT expires: - '-1' pragma: @@ -2016,7 +2254,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29976 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29972 status: code: 200 message: OK @@ -2034,7 +2272,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/extensions/virtualmachineextensionx15cf0eff?api-version=2020-06-01 response: @@ -2048,7 +2286,7 @@ interactions: ,\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8f0bf186-4e53-4737-934e-bce02254f725?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fa0f036b-5699-4b8d-b7f5-c12af37d2302?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -2056,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:44:52 GMT + - Tue, 02 Feb 2021 09:21:43 GMT expires: - '-1' pragma: @@ -2075,7 +2313,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1194 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK @@ -2089,14 +2327,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8f0bf186-4e53-4737-934e-bce02254f725?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fa0f036b-5699-4b8d-b7f5-c12af37d2302?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:44:53.5519001+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:44:53.7550481+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"8f0bf186-4e53-4737-934e-bce02254f725\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:21:44.5022126+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:21:44.7053315+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"fa0f036b-5699-4b8d-b7f5-c12af37d2302\"\r\n}" headers: cache-control: - no-cache @@ -2105,7 +2343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:45:23 GMT + - Tue, 02 Feb 2021 09:22:15 GMT expires: - '-1' pragma: @@ -2122,7 +2360,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29977 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29970 status: code: 200 message: OK @@ -2136,7 +2374,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/extensions/virtualmachineextensionx15cf0eff?api-version=2020-06-01 response: @@ -2156,7 +2394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:45:23 GMT + - Tue, 02 Feb 2021 09:22:15 GMT expires: - '-1' pragma: @@ -2189,7 +2427,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/extensions/virtualmachineextensionx15cf0eff?api-version=2020-06-01 response: @@ -2199,17 +2437,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c1811509-a8ea-46c5-956a-c1ae7bb45c2f?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0506d18f-278b-4e70-a90f-c50d25d9cc22?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:45:25 GMT + - Tue, 02 Feb 2021 09:22:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c1811509-a8ea-46c5-956a-c1ae7bb45c2f?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0506d18f-278b-4e70-a90f-c50d25d9cc22?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2236,23 +2474,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c1811509-a8ea-46c5-956a-c1ae7bb45c2f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0506d18f-278b-4e70-a90f-c50d25d9cc22?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:45:25.8331836+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"c1811509-a8ea-46c5-956a-c1ae7bb45c2f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:22:16.220901+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0506d18f-278b-4e70-a90f-c50d25d9cc22\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:45:56 GMT + - Tue, 02 Feb 2021 09:22:46 GMT expires: - '-1' pragma: @@ -2269,7 +2507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29976 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29969 status: code: 200 message: OK @@ -2283,14 +2521,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c1811509-a8ea-46c5-956a-c1ae7bb45c2f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0506d18f-278b-4e70-a90f-c50d25d9cc22?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:45:25.8331836+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:46:16.255032+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"c1811509-a8ea-46c5-956a-c1ae7bb45c2f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:22:16.220901+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:23:06.6585662+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"0506d18f-278b-4e70-a90f-c50d25d9cc22\"\r\n}" headers: cache-control: - no-cache @@ -2299,7 +2537,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:46:26 GMT + - Tue, 02 Feb 2021 09:23:16 GMT expires: - '-1' pragma: @@ -2316,7 +2554,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29974 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29967 status: code: 200 message: OK @@ -2332,7 +2570,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/powerOff?skipShutdown=false&api-version=2020-06-01 response: @@ -2340,17 +2578,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c54cdc5-fd5f-46b3-85ed-d1fe245bdb39?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f93a3b80-e41d-46e4-8bed-7820e0bfbc71?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:46:26 GMT + - Tue, 02 Feb 2021 09:23:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c54cdc5-fd5f-46b3-85ed-d1fe245bdb39?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f93a3b80-e41d-46e4-8bed-7820e0bfbc71?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2361,7 +2599,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1192 + - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1192 x-ms-ratelimit-remaining-subscription-writes: - '1195' status: @@ -2377,14 +2615,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c54cdc5-fd5f-46b3-85ed-d1fe245bdb39?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f93a3b80-e41d-46e4-8bed-7820e0bfbc71?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:46:27.0050629+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:46:45.7706946+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"0c54cdc5-fd5f-46b3-85ed-d1fe245bdb39\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:23:17.4084668+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:23:27.0023078+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"f93a3b80-e41d-46e4-8bed-7820e0bfbc71\"\r\n}" headers: cache-control: - no-cache @@ -2393,7 +2631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:46:57 GMT + - Tue, 02 Feb 2021 09:23:47 GMT expires: - '-1' pragma: @@ -2410,7 +2648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29972 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29965 status: code: 200 message: OK @@ -2424,9 +2662,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0c54cdc5-fd5f-46b3-85ed-d1fe245bdb39?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f93a3b80-e41d-46e4-8bed-7820e0bfbc71?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2436,7 +2674,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:46:57 GMT + - Tue, 02 Feb 2021 09:23:47 GMT expires: - '-1' pragma: @@ -2449,7 +2687,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29971 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29964 status: code: 200 message: OK @@ -2465,7 +2703,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/reapply?api-version=2020-06-01 response: @@ -2473,17 +2711,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/47096dca-fa45-4ecc-aaa0-51d76c6fbd9b?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5246c1a1-28b7-474f-bb46-56106544d9ba?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:46:57 GMT + - Tue, 02 Feb 2021 09:23:47 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/47096dca-fa45-4ecc-aaa0-51d76c6fbd9b?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5246c1a1-28b7-474f-bb46-56106544d9ba?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2494,7 +2732,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1191 + - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1191 x-ms-ratelimit-remaining-subscription-writes: - '1194' status: @@ -2510,14 +2748,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/47096dca-fa45-4ecc-aaa0-51d76c6fbd9b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5246c1a1-28b7-474f-bb46-56106544d9ba?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:46:58.1613323+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:47:03.7081709+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"47096dca-fa45-4ecc-aaa0-51d76c6fbd9b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:23:48.5647789+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:23:49.8147677+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"5246c1a1-28b7-474f-bb46-56106544d9ba\"\r\n}" headers: cache-control: - no-cache @@ -2526,7 +2764,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:47:27 GMT + - Tue, 02 Feb 2021 09:24:19 GMT expires: - '-1' pragma: @@ -2543,7 +2781,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29968 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29962 status: code: 200 message: OK @@ -2557,9 +2795,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/47096dca-fa45-4ecc-aaa0-51d76c6fbd9b?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5246c1a1-28b7-474f-bb46-56106544d9ba?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2569,7 +2807,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:47:28 GMT + - Tue, 02 Feb 2021 09:24:19 GMT expires: - '-1' pragma: @@ -2582,7 +2820,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29967 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29961 status: code: 200 message: OK @@ -2598,7 +2836,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/redeploy?api-version=2020-06-01 response: @@ -2606,17 +2844,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99597885-3479-4552-9ad1-499a0b47572f?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/935e28db-58d0-4d18-9ef7-2f6dae900f0a?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:47:28 GMT + - Tue, 02 Feb 2021 09:24:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99597885-3479-4552-9ad1-499a0b47572f?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/935e28db-58d0-4d18-9ef7-2f6dae900f0a?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2627,7 +2865,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1190 + - Microsoft.Compute/UpdateVM3Min;235,Microsoft.Compute/UpdateVM30Min;1190 x-ms-ratelimit-remaining-subscription-writes: - '1193' status: @@ -2643,13 +2881,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99597885-3479-4552-9ad1-499a0b47572f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/935e28db-58d0-4d18-9ef7-2f6dae900f0a?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:47:29.1924914+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"99597885-3479-4552-9ad1-499a0b47572f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:24:19.6898745+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"935e28db-58d0-4d18-9ef7-2f6dae900f0a\"\ \r\n}" headers: cache-control: @@ -2659,7 +2897,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:47:58 GMT + - Tue, 02 Feb 2021 09:24:49 GMT expires: - '-1' pragma: @@ -2676,7 +2914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29965 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29959 status: code: 200 message: OK @@ -2690,14 +2928,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99597885-3479-4552-9ad1-499a0b47572f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/935e28db-58d0-4d18-9ef7-2f6dae900f0a?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:47:29.1924914+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:48:04.5050936+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"99597885-3479-4552-9ad1-499a0b47572f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:24:19.6898745+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:24:55.1118176+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"935e28db-58d0-4d18-9ef7-2f6dae900f0a\"\r\n}" headers: cache-control: - no-cache @@ -2706,7 +2944,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:48:30 GMT + - Tue, 02 Feb 2021 09:25:20 GMT expires: - '-1' pragma: @@ -2723,7 +2961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29962 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29956 status: code: 200 message: OK @@ -2737,9 +2975,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/99597885-3479-4552-9ad1-499a0b47572f?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/935e28db-58d0-4d18-9ef7-2f6dae900f0a?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2749,7 +2987,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:48:30 GMT + - Tue, 02 Feb 2021 09:25:20 GMT expires: - '-1' pragma: @@ -2762,7 +3000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29961 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29955 status: code: 200 message: OK @@ -2781,35 +3019,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"1b280b2d-9b5e-4914-908a-05ca631a1c52\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9e88c484-f38c-4c22-a474-1b26b061031c\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Standard_LRS\",\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + name\": \"virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"myVM\",\r\n \"adminUsername\": \"testuser\",\r\ @@ -2825,15 +3064,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97f3926c-d44a-4691-b3d0-a26fa79025d8?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a9705ac-1614-4d2c-9c68-ab9c89855b16?api-version=2020-06-01 cache-control: - no-cache content-length: - - '3219' + - '3326' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:48:36 GMT + - Tue, 02 Feb 2021 09:25:25 GMT expires: - '-1' pragma: @@ -2852,7 +3091,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 200 message: OK @@ -2866,14 +3105,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/97f3926c-d44a-4691-b3d0-a26fa79025d8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9a9705ac-1614-4d2c-9c68-ab9c89855b16?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:48:32.6926047+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:48:32.8175854+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"97f3926c-d44a-4691-b3d0-a26fa79025d8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:25:22.6430434+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:25:22.7680532+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"9a9705ac-1614-4d2c-9c68-ab9c89855b16\"\r\n}" headers: cache-control: - no-cache @@ -2882,7 +3121,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:49:06 GMT + - Tue, 02 Feb 2021 09:25:56 GMT expires: - '-1' pragma: @@ -2899,7 +3138,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29959 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29953 status: code: 200 message: OK @@ -2913,35 +3152,36 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinex15cf0eff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"1b280b2d-9b5e-4914-908a-05ca631a1c52\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9e88c484-f38c-4c22-a474-1b26b061031c\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ \ \"storageAccountType\": \"Standard_LRS\",\r\n \"id\":\ \ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/myVMosdisk\"\ \r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\"\ - : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + : [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk2_60dec95d95dd4c498d555d0256edad03\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk2_ddcc69f5335a4dc8bef8318a3f1632bc\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"\ - name\": \"virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + name\": \"virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ ,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"\ - Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk3_7b1c7543daeb4e348c5567e5692c1cba\"\ + Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinex15cf0eff_disk3_1e16ffae04ec4e5681fd066ee26a00d7\"\ \r\n },\r\n \"diskSizeGB\": 1023,\r\n \"toBeDetached\"\ : false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \ \ \"computerName\": \"myVM\",\r\n \"adminUsername\": \"testuser\",\r\ @@ -2957,11 +3197,11 @@ interactions: cache-control: - no-cache content-length: - - '3220' + - '3327' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:49:06 GMT + - Tue, 02 Feb 2021 09:25:56 GMT expires: - '-1' pragma: @@ -2978,7 +3218,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31987 + - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31985 status: code: 200 message: OK @@ -2994,7 +3234,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/generalize?api-version=2020-06-01 response: @@ -3006,7 +3246,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:49:06 GMT + - Tue, 02 Feb 2021 09:25:56 GMT expires: - '-1' pragma: @@ -3019,7 +3259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1189 + - Microsoft.Compute/UpdateVM3Min;234,Microsoft.Compute/UpdateVM30Min;1187 x-ms-ratelimit-remaining-subscription-writes: - '1192' status: @@ -3037,7 +3277,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff/deallocate?api-version=2020-06-01 response: @@ -3045,17 +3285,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2275825b-c622-4795-a07c-782ebe6a0abe?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/edd28f63-d911-4df0-a7a5-149869451a3e?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:49:07 GMT + - Tue, 02 Feb 2021 09:25:57 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2275825b-c622-4795-a07c-782ebe6a0abe?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/edd28f63-d911-4df0-a7a5-149869451a3e?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -3082,23 +3322,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2275825b-c622-4795-a07c-782ebe6a0abe?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/edd28f63-d911-4df0-a7a5-149869451a3e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:49:07.4425625+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"2275825b-c622-4795-a07c-782ebe6a0abe\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:25:58.019154+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"edd28f63-d911-4df0-a7a5-149869451a3e\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:49:17 GMT + - Tue, 02 Feb 2021 09:26:07 GMT expires: - '-1' pragma: @@ -3115,7 +3355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29958 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29952 status: code: 200 message: OK @@ -3129,23 +3369,70 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2275825b-c622-4795-a07c-782ebe6a0abe?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/edd28f63-d911-4df0-a7a5-149869451a3e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:49:07.4425625+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:49:39.4269886+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"2275825b-c622-4795-a07c-782ebe6a0abe\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:25:58.019154+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"edd28f63-d911-4df0-a7a5-149869451a3e\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:26:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29948 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/edd28f63-d911-4df0-a7a5-149869451a3e?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:25:58.019154+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:26:48.6918301+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"edd28f63-d911-4df0-a7a5-149869451a3e\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:49:53 GMT + - Tue, 02 Feb 2021 09:27:14 GMT expires: - '-1' pragma: @@ -3162,7 +3449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29954 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29946 status: code: 200 message: OK @@ -3176,9 +3463,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2275825b-c622-4795-a07c-782ebe6a0abe?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/edd28f63-d911-4df0-a7a5-149869451a3e?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -3188,7 +3475,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 08:49:53 GMT + - Tue, 02 Feb 2021 09:27:15 GMT expires: - '-1' pragma: @@ -3201,7 +3488,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29953 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29945 status: code: 200 message: OK @@ -3217,7 +3504,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex15cf0eff?api-version=2020-06-01 response: @@ -3227,17 +3514,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0af46153-5618-4997-8217-3b92e39b0929?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b1ea278-1492-4010-ac08-022f90ac9146?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:49:54 GMT + - Tue, 02 Feb 2021 09:27:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0af46153-5618-4997-8217-3b92e39b0929?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b1ea278-1492-4010-ac08-022f90ac9146?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -3264,23 +3551,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0af46153-5618-4997-8217-3b92e39b0929?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3b1ea278-1492-4010-ac08-022f90ac9146?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:49:55.1613528+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:49:55.6300761+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"0af46153-5618-4997-8217-3b92e39b0929\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:27:16.051391+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:27:16.5201391+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"3b1ea278-1492-4010-ac08-022f90ac9146\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:50:05 GMT + - Tue, 02 Feb 2021 09:27:26 GMT expires: - '-1' pragma: @@ -3297,7 +3584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29951 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29943 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_2.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_2.yaml index e255a72ac032..abf68e17a26d 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_2.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_2.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamex34bd0f90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90\"\ - ,\r\n \"etag\": \"W/\\\"8f2ad2de-361a-4af6-9805-954d1ab544cf\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"13d91d47-76e4-448c-ba7c-b45d5e8fea6c\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"435fae78-32a4-4384-a515-5a0b149ead79\",\r\n \"\ + \ \"resourceGuid\": \"998a021d-3f93-4a5b-90b4-5450570837a5\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/432d51ca-2ddb-4265-8beb-9b18265e632f?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3ef617c-106e-4a51-b80c-9369768c626f?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:50:25 GMT + - Tue, 02 Feb 2021 09:27:43 GMT expires: - '-1' pragma: @@ -53,9 +53,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 056f8bc9-f2eb-48d6-9f53-f8e505955eca + - a840d4f8-1c11-46a5-8866-4ac6a5e972aa x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1190' status: code: 201 message: Created @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/432d51ca-2ddb-4265-8beb-9b18265e632f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b3ef617c-106e-4a51-b80c-9369768c626f?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:50:29 GMT + - Tue, 02 Feb 2021 09:27:46 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 215029b3-ef10-4b73-b44a-272f27376477 + - 438fb2e3-0c1c-4dc8-97df-35b48d3d8d16 status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamex34bd0f90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90\"\ - ,\r\n \"etag\": \"W/\\\"9d990cf1-dea6-4d0d-a01b-647433bbe0b9\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"79f0b8dd-0821-408a-a906-bfd1470badd1\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"435fae78-32a4-4384-a515-5a0b149ead79\",\r\n \"\ + \ \"resourceGuid\": \"998a021d-3f93-4a5b-90b4-5450570837a5\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:50:29 GMT + - Tue, 02 Feb 2021 09:27:47 GMT etag: - - W/"9d990cf1-dea6-4d0d-a01b-647433bbe0b9" + - W/"79f0b8dd-0821-408a-a906-bfd1470badd1" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5b578c7f-e1d6-4a67-89f8-2e340eebf13f + - 80ed4b1f-feed-43a9-9494-85a3b267504a status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90/subnets/subnetx34bd0f90?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90/subnets/subnetx34bd0f90?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetx34bd0f90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90/subnets/subnetx34bd0f90\"\ - ,\r\n \"etag\": \"W/\\\"051d49f9-9bdc-44c0-a7ac-382350c36880\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"d3c87a61-00ec-4fd2-b7f8-aeb5592ae9c4\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1c500724-e9f2-4302-9676-e77e8634b6dc?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/61a4f575-3b32-4f8b-8488-43b192fc1a99?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:50:30 GMT + - Tue, 02 Feb 2021 09:27:48 GMT expires: - '-1' pragma: @@ -207,9 +207,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0f5639c6-c864-4571-ba35-b7abfdce5a4e + - 10b4220a-dcdb-40f6-9af5-9b0cd2c33426 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1189' status: code: 201 message: Created @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1c500724-e9f2-4302-9676-e77e8634b6dc?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/61a4f575-3b32-4f8b-8488-43b192fc1a99?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:50:33 GMT + - Tue, 02 Feb 2021 09:27:52 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e186b1d4-312c-421f-98c6-f79d37bfbac9 + - d4ce844c-b427-44f4-90b0-f1eb918202ea status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90/subnets/subnetx34bd0f90?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90/subnets/subnetx34bd0f90?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetx34bd0f90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex34bd0f90/subnets/subnetx34bd0f90\"\ - ,\r\n \"etag\": \"W/\\\"c8c2e5d4-51b4-419f-8f8f-e1ee173bece0\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9dee19b6-de8a-4861-ac7b-c30ab10565e9\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:50:33 GMT + - Tue, 02 Feb 2021 09:27:52 GMT etag: - - W/"c8c2e5d4-51b4-419f-8f8f-e1ee173bece0" + - W/"9dee19b6-de8a-4861-ac7b-c30ab10565e9" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d9c7dac4-c5fc-4a32-ad21-bd6e18e568ef + - c57d5e0d-87ac-419a-8262-ee9b90cffacb status: code: 200 message: OK @@ -325,18 +325,18 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex34bd0f90?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex34bd0f90?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"interfacex34bd0f90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex34bd0f90\"\ - ,\r\n \"etag\": \"W/\\\"0993c262-66e1-44fb-81e1-5f269379747a\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8db121a9-63db-42aa-a14d-8637627c0062\\\"\",\r\n \ \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"f94be268-75cd-446d-8499-89d3770b48d9\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"88097692-2064-45e8-b9b0-f1ec5c644106\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"MyIpConfig\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex34bd0f90/ipConfigurations/MyIpConfig\"\ - ,\r\n \"etag\": \"W/\\\"0993c262-66e1-44fb-81e1-5f269379747a\\\"\"\ + ,\r\n \"etag\": \"W/\\\"8db121a9-63db-42aa-a14d-8637627c0062\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -344,7 +344,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"pcxf4q3egkcehjivlifrjhvnpb.bx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"dubivgmth3nuvefukrifocbxuf.bx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ \n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ @@ -353,7 +353,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b7681529-4d3e-4467-b3bd-b8f55d9698ae?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/111b1594-a25b-4f9f-80dd-0a69a5128136?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -361,7 +361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:50:41 GMT + - Tue, 02 Feb 2021 09:27:56 GMT expires: - '-1' pragma: @@ -374,9 +374,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 313900b0-3d5b-4525-8c8e-660c27d0ed41 + - eea8b352-0c85-4975-a1b6-ee7df410a329 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1188' status: code: 201 message: Created @@ -390,9 +390,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b7681529-4d3e-4467-b3bd-b8f55d9698ae?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/111b1594-a25b-4f9f-80dd-0a69a5128136?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -404,7 +404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:51:11 GMT + - Tue, 02 Feb 2021 09:28:27 GMT expires: - '-1' pragma: @@ -421,7 +421,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8578bbc7-fcdb-49c5-85ec-9c22377c6e8e + - a7eb029e-c3e9-4628-adb7-f00e94cc4304 status: code: 200 message: OK @@ -435,18 +435,18 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex34bd0f90?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex34bd0f90?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"interfacex34bd0f90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex34bd0f90\"\ - ,\r\n \"etag\": \"W/\\\"0993c262-66e1-44fb-81e1-5f269379747a\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8db121a9-63db-42aa-a14d-8637627c0062\\\"\",\r\n \ \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"f94be268-75cd-446d-8499-89d3770b48d9\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"88097692-2064-45e8-b9b0-f1ec5c644106\"\ ,\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"MyIpConfig\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/networkInterfaces/interfacex34bd0f90/ipConfigurations/MyIpConfig\"\ - ,\r\n \"etag\": \"W/\\\"0993c262-66e1-44fb-81e1-5f269379747a\\\"\"\ + ,\r\n \"etag\": \"W/\\\"8db121a9-63db-42aa-a14d-8637627c0062\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\"\ @@ -454,7 +454,7 @@ interactions: \r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\"\ : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n\ \ \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"\ - internalDomainNameSuffix\": \"pcxf4q3egkcehjivlifrjhvnpb.bx.internal.cloudapp.net\"\ + internalDomainNameSuffix\": \"dubivgmth3nuvefukrifocbxuf.bx.internal.cloudapp.net\"\ \r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\"\ : false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\ \n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\ @@ -467,9 +467,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:51:11 GMT + - Tue, 02 Feb 2021 09:28:27 GMT etag: - - W/"0993c262-66e1-44fb-81e1-5f269379747a" + - W/"8db121a9-63db-42aa-a14d-8637627c0062" expires: - '-1' pragma: @@ -486,7 +486,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b07bd1a4-3988-4da2-9de6-a8c9857928ec + - 5d71df81-d22c-4b26-9d05-d57ba3f383eb status: code: 200 message: OK @@ -512,19 +512,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinex34bd0f90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"1c783e4f-43c4-4eda-8fdf-87decfd7e716\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ac2f5ce2-b64f-46e9-8048-6b4afa433ae9\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ @@ -545,15 +546,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fcff51cb-d4ad-437e-bebe-729f279ca8a1?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f88f776c-175d-46af-91d1-4434f0814809?api-version=2020-06-01 cache-control: - no-cache content-length: - - '1896' + - '2003' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:51:22 GMT + - Tue, 02 Feb 2021 09:28:38 GMT expires: - '-1' pragma: @@ -566,9 +567,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1197 + - Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -582,13 +583,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fcff51cb-d4ad-437e-bebe-729f279ca8a1?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f88f776c-175d-46af-91d1-4434f0814809?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:51:20.0675944+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"fcff51cb-d4ad-437e-bebe-729f279ca8a1\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:28:36.7546374+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"f88f776c-175d-46af-91d1-4434f0814809\"\ \r\n}" headers: cache-control: @@ -598,7 +599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:51:32 GMT + - Tue, 02 Feb 2021 09:28:48 GMT expires: - '-1' pragma: @@ -615,7 +616,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29950 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29942 status: code: 200 message: OK @@ -629,23 +630,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fcff51cb-d4ad-437e-bebe-729f279ca8a1?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f88f776c-175d-46af-91d1-4434f0814809?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:51:20.0675944+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:52:19.2238489+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"fcff51cb-d4ad-437e-bebe-729f279ca8a1\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:28:36.7546374+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:29:38.020334+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"f88f776c-175d-46af-91d1-4434f0814809\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:52:22 GMT + - Tue, 02 Feb 2021 09:29:39 GMT expires: - '-1' pragma: @@ -662,7 +663,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29949 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29941 status: code: 200 message: OK @@ -676,19 +677,20 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90?api-version=2020-06-01 response: body: string: "{\r\n \"name\": \"virtualmachinex34bd0f90\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\"\ - : \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"1c783e4f-43c4-4eda-8fdf-87decfd7e716\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ac2f5ce2-b64f-46e9-8048-6b4afa433ae9\"\ ,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2_v2\"\r\n\ \ },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"\ WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\"\ - : \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\r\n \ + : \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\r\n \ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \ \ \"name\": \"myVMosdisk\",\r\n \"createOption\": \"FromImage\"\ ,\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n\ @@ -710,11 +712,11 @@ interactions: cache-control: - no-cache content-length: - - '2105' + - '2212' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:52:23 GMT + - Tue, 02 Feb 2021 09:29:39 GMT expires: - '-1' pragma: @@ -731,7 +733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31984 + - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31983 status: code: 200 message: OK @@ -747,7 +749,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90/simulateEviction?api-version=2020-06-01 response: @@ -757,7 +759,7 @@ interactions: cache-control: - no-cache date: - - Tue, 19 Jan 2021 08:52:23 GMT + - Tue, 02 Feb 2021 09:29:40 GMT expires: - '-1' pragma: @@ -772,7 +774,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteVM3Min;238,Microsoft.Compute/DeleteVM30Min;1197 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 204 message: No Content @@ -788,7 +790,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90/performMaintenance?api-version=2020-06-01 response: @@ -804,7 +806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:52:24 GMT + - Tue, 02 Feb 2021 09:29:41 GMT expires: - '-1' pragma: @@ -817,9 +819,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1188 + - Microsoft.Compute/UpdateVM3Min;239,Microsoft.Compute/UpdateVM30Min;1186 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 409 message: Conflict @@ -835,7 +837,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90/convertToManagedDisks?api-version=2020-06-01 response: @@ -851,7 +853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:52:24 GMT + - Tue, 02 Feb 2021 09:29:41 GMT expires: - '-1' pragma: @@ -864,9 +866,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1187 + - Microsoft.Compute/UpdateVM3Min;238,Microsoft.Compute/UpdateVM30Min;1185 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1196' status: code: 409 message: Conflict @@ -884,7 +886,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90/reimage?api-version=2020-06-01 response: @@ -901,7 +903,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:52:25 GMT + - Tue, 02 Feb 2021 09:29:42 GMT expires: - '-1' pragma: @@ -914,9 +916,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1186 + - Microsoft.Compute/UpdateVM3Min;237,Microsoft.Compute/UpdateVM30Min;1184 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1195' status: code: 409 message: Conflict @@ -932,7 +934,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachines/virtualmachinex34bd0f90?api-version=2020-06-01 response: @@ -942,17 +944,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 08:52:25 GMT + - Tue, 02 Feb 2021 09:29:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -965,7 +967,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteVM3Min;237,Microsoft.Compute/DeleteVM30Min;1196 x-ms-ratelimit-remaining-subscription-deletes: - - '14995' + - '14999' status: code: 202 message: Accepted @@ -979,13 +981,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -995,7 +997,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:52:35 GMT + - Tue, 02 Feb 2021 09:29:53 GMT expires: - '-1' pragma: @@ -1012,7 +1014,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29947 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29939 status: code: 200 message: OK @@ -1026,13 +1028,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1042,7 +1044,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:53:06 GMT + - Tue, 02 Feb 2021 09:30:23 GMT expires: - '-1' pragma: @@ -1059,7 +1061,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29946 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29938 status: code: 200 message: OK @@ -1073,13 +1075,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1089,7 +1091,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:53:37 GMT + - Tue, 02 Feb 2021 09:30:53 GMT expires: - '-1' pragma: @@ -1106,7 +1108,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29945 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29937 status: code: 200 message: OK @@ -1120,13 +1122,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1136,7 +1138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:54:07 GMT + - Tue, 02 Feb 2021 09:31:23 GMT expires: - '-1' pragma: @@ -1153,7 +1155,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29944 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29936 status: code: 200 message: OK @@ -1167,13 +1169,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1183,7 +1185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:54:37 GMT + - Tue, 02 Feb 2021 09:31:53 GMT expires: - '-1' pragma: @@ -1200,7 +1202,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29942 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29934 status: code: 200 message: OK @@ -1214,13 +1216,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1230,7 +1232,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:55:08 GMT + - Tue, 02 Feb 2021 09:32:25 GMT expires: - '-1' pragma: @@ -1247,7 +1249,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29941 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29933 status: code: 200 message: OK @@ -1261,13 +1263,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1277,7 +1279,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:55:38 GMT + - Tue, 02 Feb 2021 09:32:55 GMT expires: - '-1' pragma: @@ -1294,7 +1296,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29940 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29932 status: code: 200 message: OK @@ -1308,13 +1310,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1324,7 +1326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:56:08 GMT + - Tue, 02 Feb 2021 09:33:26 GMT expires: - '-1' pragma: @@ -1341,7 +1343,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29939 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29931 status: code: 200 message: OK @@ -1355,13 +1357,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1371,7 +1373,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:56:39 GMT + - Tue, 02 Feb 2021 09:33:56 GMT expires: - '-1' pragma: @@ -1388,7 +1390,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29937 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29929 status: code: 200 message: OK @@ -1402,13 +1404,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1418,7 +1420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:57:09 GMT + - Tue, 02 Feb 2021 09:34:26 GMT expires: - '-1' pragma: @@ -1435,7 +1437,195 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29936 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29928 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:34:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29927 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:35:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29926 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:35:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29924 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:36:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29923 status: code: 200 message: OK @@ -1449,13 +1639,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\ \r\n}" headers: cache-control: @@ -1465,7 +1655,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:57:39 GMT + - Tue, 02 Feb 2021 09:36:58 GMT expires: - '-1' pragma: @@ -1482,7 +1672,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29935 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29922 status: code: 200 message: OK @@ -1496,23 +1686,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e2071b6a-7956-4a78-b665-67c5a6db9ce8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7a074f05-eb5c-4462-aa2a-7133f67d2b6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T08:52:26.2394725+00:00\",\r\n \"\ - endTime\": \"2021-01-19T08:57:40.3644032+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"e2071b6a-7956-4a78-b665-67c5a6db9ce8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:29:42.8172007+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:37:10.708494+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"7a074f05-eb5c-4462-aa2a-7133f67d2b6e\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:09 GMT + - Tue, 02 Feb 2021 09:37:28 GMT expires: - '-1' pragma: @@ -1529,7 +1719,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29933 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29920 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_extension_image.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_extension_image.yaml index 28063c327b67..7e5e52a65413 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_extension_image.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_extension_image.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions/1.0.2?api-version=2020-06-01 response: @@ -28,7 +28,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:23 GMT + - Tue, 02 Feb 2021 09:37:41 GMT expires: - '-1' pragma: @@ -57,7 +57,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types?api-version=2020-06-01 response: @@ -79,7 +79,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:23 GMT + - Tue, 02 Feb 2021 09:37:41 GMT expires: - '-1' pragma: @@ -108,7 +108,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/Microsoft.Compute/artifacttypes/vmextension/types/VMAccessAgent/versions?api-version=2020-06-01 response: @@ -150,7 +150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:23 GMT + - Tue, 02 Feb 2021 09:37:42 GMT expires: - '-1' pragma: diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_image.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_image.yaml index beb4beca6355..7daa6379c62b 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_image.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vm.test_compute_vm_image.yaml @@ -9,7 +9,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions/2019.0.20190115?api-version=2020-06-01 response: @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:30 GMT + - Tue, 02 Feb 2021 09:37:52 GMT expires: - '-1' pragma: @@ -60,7 +60,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2019-Datacenter/versions?api-version=2020-06-01 response: @@ -89,8 +89,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.1579.2011180054\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1637.2012040632\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.1637.2012040632\"\ - \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.914.1912042330\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.914.1912042330\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.1697.2101090203\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.1697.2101090203\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"17763.973.2001110547\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2019-Datacenter/Versions/17763.973.2001110547\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"2019.0.20181107\"\ @@ -112,11 +112,11 @@ interactions: cache-control: - no-cache content-length: - - '6530' + - '6532' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:30 GMT + - Tue, 02 Feb 2021 09:37:52 GMT expires: - '-1' pragma: @@ -145,7 +145,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers?api-version=2020-06-01 response: @@ -203,7 +203,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:31 GMT + - Tue, 02 Feb 2021 09:37:53 GMT expires: - '-1' pragma: @@ -232,7 +232,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers?api-version=2020-06-01 response: @@ -241,6 +241,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/128technology\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1580863854728\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/1580863854728\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583411303229\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583411303229\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1583465680865\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/1583465680865\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"1585118004523\"\ @@ -431,6 +433,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/auraportal\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"auriq-systems\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/auriq-systems\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automateio1592914387888\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/automateio1592914387888\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"automationanywhere\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/automationanywhere\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"avanseus\"\ @@ -465,10 +469,6 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureDatabricks\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azureopenshift\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/azureopenshift\"\ - \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.ManagedServices.TestExtPublisher00\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.ManagedServices.TestExtPublisher00\"\ - \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.PIRCore.CAPSExtBvt.1\"\ - ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.PIRCore.CAPSExtBvt.1\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"AzureRT.Test\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/AzureRT.Test\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"azuretesting\"\ @@ -719,6 +719,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/contiamogmbh\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlcase\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlcase\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"controlplanecorporation1609967567639\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/controlplanecorporation1609967567639\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"convertigo\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/convertigo\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"corda\"\ @@ -1141,6 +1143,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/iboss\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconics\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconics\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iconsulting-spa\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/iconsulting-spa\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"icubeconsultancyservicesinc\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/icubeconsultancyservicesinc\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"iguazio-5069960\"\ @@ -1933,6 +1937,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Edp\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxAttestation\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxAttestation\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.LinuxTestAttestation\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.LinuxTestAttestation\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Microsoft.Azure.Security.Monitoring\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.Test\"\ @@ -2325,6 +2331,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/oceanblue-cloud\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"OctopusDeploy.Tentacle\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/OctopusDeploy.Tentacle\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odix\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/odix\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"odysseyconsultantsltd\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/odysseyconsultantsltd\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"officeatwork-ag\"\ @@ -2421,6 +2429,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/pivotal\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"plesk\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/plesk\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pmsoftwareinternational1603102514882\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/pmsoftwareinternational1603102514882\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"pnop\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/pnop\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"portalarchitects\"\ @@ -2737,6 +2747,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/spektra\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"sphere3d\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/sphere3d\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spideroakinc1588278690933\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/spideroakinc1588278690933\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"spirentcommunications1594084187199\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/spirentcommunications1594084187199\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"splunk\"\ @@ -2845,6 +2857,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/synergixinc1585256339250\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"synnexcorp\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/synnexcorp\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"syscomcomputerengineeringco1583913200141\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/syscomcomputerengineeringco1583913200141\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tableau\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/tableau\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tactic\"\ @@ -2985,6 +2999,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/tsa-public-service\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"tunnelbiz\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/tunnelbiz\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"turbonet1581982683964\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/turbonet1581982683964\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"twistlock\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/twistlock\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"typesafe\"\ @@ -3077,6 +3093,8 @@ interactions: ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/volterraedgeservices\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"Vormetric\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/Vormetric\"\ + \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vscconsultingptyltd1608535888097\"\ + ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/vscconsultingptyltd1608535888097\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vte\"\ ,\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/eastus/Publishers/vte\"\ \r\n },\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"vu-llc\"\ @@ -3178,11 +3196,11 @@ interactions: cache-control: - no-cache content-length: - - '334011' + - '336044' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:33 GMT + - Tue, 02 Feb 2021 09:37:55 GMT expires: - '-1' pragma: @@ -3211,7 +3229,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus?api-version=2020-06-01 response: @@ -3477,7 +3495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 08:58:33 GMT + - Tue, 02 Feb 2021 09:37:55 GMT expires: - '-1' pragma: diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute.yaml index 1eeecab71d40..4ae9d4b58057 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamex80f0ea3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3\"\ - ,\r\n \"etag\": \"W/\\\"9fc1d4a5-80c0-4ac2-bb44-95f0ad0875ab\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"7706f06b-04d4-4810-bdc3-b87bc4129292\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"af35621d-780e-46c5-b658-dccff5e5575e\",\r\n \"\ + \ \"resourceGuid\": \"4bb0b154-71f8-4a24-9154-99222e0f465a\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/30205329-6502-4a69-b1f8-db088b23adc1?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/88198cf7-92ca-4505-8b04-f915ef11f8bb?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:22:38 GMT + - Tue, 02 Feb 2021 09:38:13 GMT expires: - '-1' pragma: @@ -53,9 +53,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - af3eb691-f1f0-430d-895a-8621454451fa + - f53750f8-9cb6-4515-a2be-247e162fd536 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/30205329-6502-4a69-b1f8-db088b23adc1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/88198cf7-92ca-4505-8b04-f915ef11f8bb?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:22:41 GMT + - Tue, 02 Feb 2021 09:38:16 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2c337664-7b6d-4147-8dae-389c6bfb75bb + - d5d4ec33-6263-43f4-9a46-129390da817c status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamex80f0ea3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3\"\ - ,\r\n \"etag\": \"W/\\\"a57d54c6-ebd1-4b65-8755-03b23cf3913d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8e242fd3-ad84-4625-80e4-b16eaafc0217\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"af35621d-780e-46c5-b658-dccff5e5575e\",\r\n \"\ + \ \"resourceGuid\": \"4bb0b154-71f8-4a24-9154-99222e0f465a\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:22:41 GMT + - Tue, 02 Feb 2021 09:38:17 GMT etag: - - W/"a57d54c6-ebd1-4b65-8755-03b23cf3913d" + - W/"8e242fd3-ad84-4625-80e4-b16eaafc0217" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c84afe5a-de26-43d6-be5e-60cfe4faac80 + - d6713ad1-a093-4805-8a8e-6b2c64382e5f status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamex80f0ea3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ - ,\r\n \"etag\": \"W/\\\"249c1040-3cdf-4f94-ab21-a489a5f45a5e\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"fc36766a-441e-4c59-a420-fdea47fd7e8b\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/feec4b5a-c0c8-4571-98c1-fc4f4654b949?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4a2e5641-6416-4f9f-abca-72a0dd6bc9c4?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:22:42 GMT + - Tue, 02 Feb 2021 09:38:17 GMT expires: - '-1' pragma: @@ -207,9 +207,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - be0e4e3f-337e-45ce-b2f5-a4182505579c + - 860f77d1-1f26-40ba-9b46-64c2334bccf7 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1193' status: code: 201 message: Created @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/feec4b5a-c0c8-4571-98c1-fc4f4654b949?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4a2e5641-6416-4f9f-abca-72a0dd6bc9c4?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:22:45 GMT + - Tue, 02 Feb 2021 09:38:21 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a13e7e2c-4671-4f44-8fc6-9b59c791c0ab + - a5804d1a-07e3-45ce-9258-e032e7304abe status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamex80f0ea3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ - ,\r\n \"etag\": \"W/\\\"b43115e2-b631-4ef3-9e1c-9c1d6b04d0e1\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4971abf0-bc10-4357-a2a8-302dc7c07a88\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:22:46 GMT + - Tue, 02 Feb 2021 09:38:22 GMT etag: - - W/"b43115e2-b631-4ef3-9e1c-9c1d6b04d0e1" + - W/"4971abf0-bc10-4357-a2a8-302dc7c07a88" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f37a3ef-5cfc-4eda-ba8c-9552e50abdba + - d711b391-a55a-44ea-b561-0acac7085c25 status: code: 200 message: OK @@ -334,7 +334,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3?api-version=2020-06-01 response: @@ -342,8 +342,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset80f0ea3\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -351,17 +352,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -377,20 +379,20 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"1d2fad46-724b-47f1-9f0a-da8f777fe2e5\"\r\n }\r\n}" + : \"8389b083-e28d-4ec9-a9c3-d58e97982a4a\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2988' + - '3127' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:23:00 GMT + - Tue, 02 Feb 2021 09:38:33 GMT expires: - '-1' pragma: @@ -405,7 +407,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4796 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' x-ms-request-charge: - '4' status: @@ -421,23 +423,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:23:10 GMT + - Tue, 02 Feb 2021 09:38:44 GMT expires: - '-1' pragma: @@ -454,7 +456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29919 status: code: 200 message: OK @@ -468,23 +470,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:24:48 GMT + - Tue, 02 Feb 2021 09:40:21 GMT expires: - '-1' pragma: @@ -501,7 +503,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29919 status: code: 200 message: OK @@ -515,23 +517,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:25:18 GMT + - Tue, 02 Feb 2021 09:40:52 GMT expires: - '-1' pragma: @@ -548,7 +550,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29917 status: code: 200 message: OK @@ -562,23 +564,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:25:48 GMT + - Tue, 02 Feb 2021 09:41:22 GMT expires: - '-1' pragma: @@ -595,7 +597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29916 status: code: 200 message: OK @@ -609,23 +611,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:26:20 GMT + - Tue, 02 Feb 2021 09:41:52 GMT expires: - '-1' pragma: @@ -642,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29994 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29915 status: code: 200 message: OK @@ -656,23 +658,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:26:50 GMT + - Tue, 02 Feb 2021 09:42:22 GMT expires: - '-1' pragma: @@ -689,7 +691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29914 status: code: 200 message: OK @@ -703,23 +705,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:27:20 GMT + - Tue, 02 Feb 2021 09:42:52 GMT expires: - '-1' pragma: @@ -736,7 +738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29991 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -750,23 +752,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:27:50 GMT + - Tue, 02 Feb 2021 09:43:23 GMT expires: - '-1' pragma: @@ -783,7 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29990 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29911 status: code: 200 message: OK @@ -797,23 +799,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:28:21 GMT + - Tue, 02 Feb 2021 09:43:54 GMT expires: - '-1' pragma: @@ -830,7 +832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29989 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29910 status: code: 200 message: OK @@ -844,23 +846,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:28:52 GMT + - Tue, 02 Feb 2021 09:44:24 GMT expires: - '-1' pragma: @@ -877,7 +879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29988 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29909 status: code: 200 message: OK @@ -891,23 +893,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:29:22 GMT + - Tue, 02 Feb 2021 09:44:54 GMT expires: - '-1' pragma: @@ -924,7 +926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29986 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29907 status: code: 200 message: OK @@ -938,23 +940,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:29:53 GMT + - Tue, 02 Feb 2021 09:45:25 GMT expires: - '-1' pragma: @@ -971,7 +973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29985 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29919 status: code: 200 message: OK @@ -985,23 +987,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:30:23 GMT + - Tue, 02 Feb 2021 09:45:55 GMT expires: - '-1' pragma: @@ -1018,7 +1020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29984 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29918 status: code: 200 message: OK @@ -1032,23 +1034,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/9236faca-3a98-4af7-846a-f393ded120a0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0a173a2a-0077-4ad9-ada1-8d8cfce0a13c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:22:57.666752+00:00\",\r\n \"\ - endTime\": \"2021-01-20T04:30:31.354645+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"9236faca-3a98-4af7-846a-f393ded120a0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:38:31.4898725+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:46:24.1166731+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"0a173a2a-0077-4ad9-ada1-8d8cfce0a13c\"\r\n}" headers: cache-control: - no-cache content-length: - - '182' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:30:53 GMT + - Tue, 02 Feb 2021 09:46:25 GMT expires: - '-1' pragma: @@ -1065,7 +1067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29982 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29917 status: code: 200 message: OK @@ -1079,7 +1081,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3?api-version=2020-06-01 response: @@ -1087,8 +1089,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset80f0ea3\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -1096,17 +1099,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -1122,16 +1126,16 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"1d2fad46-724b-47f1-9f0a-da8f777fe2e5\"\r\n }\r\n}" + : \"8389b083-e28d-4ec9-a9c3-d58e97982a4a\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2989' + - '3128' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:30:54 GMT + - Tue, 02 Feb 2021 09:46:26 GMT expires: - '-1' pragma: @@ -1148,7 +1152,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2598 + - Microsoft.Compute/GetVMScaleSet3Min;399,Microsoft.Compute/GetVMScaleSet30Min;2599 status: code: 200 message: OK @@ -1168,7 +1172,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/extensions/vmssextensionx80f0ea3?api-version=2020-06-01 response: @@ -1181,7 +1185,7 @@ interactions: : \"1.4\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0be91829-f648-4380-bcbf-287085b0a40a?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -1189,7 +1193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:30:55 GMT + - Tue, 02 Feb 2021 09:46:27 GMT expires: - '-1' pragma: @@ -1204,7 +1208,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-ms-request-charge: - '0' status: @@ -1220,13 +1224,342 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:46:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29915 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:47:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29914 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:47:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29913 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:48:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29912 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:49:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29911 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:49:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29910 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:50:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29937 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0be91829-f648-4380-bcbf-287085b0a40a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:30:55.823296+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"0be91829-f648-4380-bcbf-287085b0a40a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ \r\n}" headers: cache-control: @@ -1236,7 +1569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:31:06 GMT + - Tue, 02 Feb 2021 09:50:30 GMT expires: - '-1' pragma: @@ -1253,7 +1586,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29981 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29936 status: code: 200 message: OK @@ -1267,14 +1600,61 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0be91829-f648-4380-bcbf-287085b0a40a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:30:55.823296+00:00\",\r\n \"\ - endTime\": \"2021-01-20T04:31:40.8388398+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"0be91829-f648-4380-bcbf-287085b0a40a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:51:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29935 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/b7dd1550-b3a3-4be1-aba6-220f78d4c584?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:46:27.163555+00:00\",\r\n \"\ + endTime\": \"2021-02-02T09:51:26.9921433+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"b7dd1550-b3a3-4be1-aba6-220f78d4c584\"\r\n}" headers: cache-control: - no-cache @@ -1283,7 +1663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:31:57 GMT + - Tue, 02 Feb 2021 09:51:32 GMT expires: - '-1' pragma: @@ -1300,7 +1680,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29980 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29934 status: code: 200 message: OK @@ -1314,7 +1694,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/extensions/vmssextensionx80f0ea3?api-version=2020-06-01 response: @@ -1333,7 +1713,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:31:58 GMT + - Tue, 02 Feb 2021 09:51:33 GMT expires: - '-1' pragma: @@ -1350,7 +1730,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31999 + - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31978 status: code: 200 message: OK @@ -1364,7 +1744,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3?api-version=2020-06-01 response: @@ -1372,8 +1752,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset80f0ea3\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -1381,17 +1762,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -1411,17 +1793,17 @@ interactions: ,\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n \ \ }\r\n ]\r\n }\r\n },\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\"\ - : false,\r\n \"uniqueId\": \"1d2fad46-724b-47f1-9f0a-da8f777fe2e5\"\r\n\ + : false,\r\n \"uniqueId\": \"8389b083-e28d-4ec9-a9c3-d58e97982a4a\"\r\n\ \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3312' + - '3451' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:31:58 GMT + - Tue, 02 Feb 2021 09:51:33 GMT expires: - '-1' pragma: @@ -1438,7 +1820,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2597 + - Microsoft.Compute/GetVMScaleSet3Min;399,Microsoft.Compute/GetVMScaleSet30Min;2594 status: code: 200 message: OK @@ -1452,7 +1834,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/extensions/vmssextensionx80f0ea3?api-version=2020-06-01 response: @@ -1471,7 +1853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:31:58 GMT + - Tue, 02 Feb 2021 09:51:33 GMT expires: - '-1' pragma: @@ -1488,7 +1870,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998 + - Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31977 status: code: 200 message: OK @@ -1502,7 +1884,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/instanceView?api-version=2020-06-01 response: @@ -1521,7 +1903,7 @@ interactions: \ \"count\": 2\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ - ,\r\n \"time\": \"2021-01-20T04:31:40.7919657+00:00\"\r\n }\r\n ]\r\ + ,\r\n \"time\": \"2021-02-02T09:51:26.9608626+00:00\"\r\n }\r\n ]\r\ \n}" headers: cache-control: @@ -1531,7 +1913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:31:59 GMT + - Tue, 02 Feb 2021 09:51:34 GMT expires: - '-1' pragma: @@ -1548,7 +1930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899 + - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;897 status: code: 200 message: OK @@ -1564,7 +1946,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/extensionRollingUpgrade?api-version=2020-06-01 response: @@ -1572,17 +1954,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 04:31:59 GMT + - Tue, 02 Feb 2021 09:51:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1593,7 +1975,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4800 + - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1611,13 +1993,154 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:52:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29932 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:52:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29929 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 09:53:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29926 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -1627,7 +2150,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:32:29 GMT + - Tue, 02 Feb 2021 09:53:37 GMT expires: - '-1' pragma: @@ -1644,7 +2167,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29978 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29923 status: code: 200 message: OK @@ -1658,13 +2181,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -1674,7 +2197,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:32:59 GMT + - Tue, 02 Feb 2021 09:54:07 GMT expires: - '-1' pragma: @@ -1691,7 +2214,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29975 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29920 status: code: 200 message: OK @@ -1705,13 +2228,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -1721,7 +2244,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:33:31 GMT + - Tue, 02 Feb 2021 09:54:37 GMT expires: - '-1' pragma: @@ -1738,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29972 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29917 status: code: 200 message: OK @@ -1752,13 +2275,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -1768,7 +2291,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:34:01 GMT + - Tue, 02 Feb 2021 09:55:07 GMT expires: - '-1' pragma: @@ -1785,7 +2308,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29969 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29934 status: code: 200 message: OK @@ -1799,13 +2322,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -1815,7 +2338,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:34:31 GMT + - Tue, 02 Feb 2021 09:55:37 GMT expires: - '-1' pragma: @@ -1832,7 +2355,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29966 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29931 status: code: 200 message: OK @@ -1846,13 +2369,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -1862,7 +2385,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:35:01 GMT + - Tue, 02 Feb 2021 09:56:09 GMT expires: - '-1' pragma: @@ -1879,7 +2402,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29963 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29928 status: code: 200 message: OK @@ -1893,13 +2416,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -1909,7 +2432,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:35:32 GMT + - Tue, 02 Feb 2021 09:56:39 GMT expires: - '-1' pragma: @@ -1926,7 +2449,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29960 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29925 status: code: 200 message: OK @@ -1940,13 +2463,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -1956,7 +2479,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:36:02 GMT + - Tue, 02 Feb 2021 09:57:09 GMT expires: - '-1' pragma: @@ -1973,7 +2496,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29958 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29922 status: code: 200 message: OK @@ -1987,13 +2510,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2003,7 +2526,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:36:32 GMT + - Tue, 02 Feb 2021 09:57:39 GMT expires: - '-1' pragma: @@ -2020,7 +2543,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29955 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29919 status: code: 200 message: OK @@ -2034,13 +2557,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2050,7 +2573,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:37:03 GMT + - Tue, 02 Feb 2021 09:58:09 GMT expires: - '-1' pragma: @@ -2067,7 +2590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29952 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29916 status: code: 200 message: OK @@ -2081,13 +2604,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2097,7 +2620,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:37:34 GMT + - Tue, 02 Feb 2021 09:58:40 GMT expires: - '-1' pragma: @@ -2114,7 +2637,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29949 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29914 status: code: 200 message: OK @@ -2128,13 +2651,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2144,7 +2667,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:38:04 GMT + - Tue, 02 Feb 2021 09:59:10 GMT expires: - '-1' pragma: @@ -2161,7 +2684,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29946 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29911 status: code: 200 message: OK @@ -2175,13 +2698,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2191,7 +2714,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:38:34 GMT + - Tue, 02 Feb 2021 09:59:41 GMT expires: - '-1' pragma: @@ -2208,7 +2731,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29943 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29908 status: code: 200 message: OK @@ -2222,13 +2745,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2238,7 +2761,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:39:04 GMT + - Tue, 02 Feb 2021 10:00:11 GMT expires: - '-1' pragma: @@ -2255,7 +2778,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29940 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29917 status: code: 200 message: OK @@ -2269,13 +2792,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2285,7 +2808,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:39:35 GMT + - Tue, 02 Feb 2021 10:00:41 GMT expires: - '-1' pragma: @@ -2302,7 +2825,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29938 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29914 status: code: 200 message: OK @@ -2316,13 +2839,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2332,7 +2855,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:40:05 GMT + - Tue, 02 Feb 2021 10:01:12 GMT expires: - '-1' pragma: @@ -2349,7 +2872,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29935 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29911 status: code: 200 message: OK @@ -2363,13 +2886,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2379,7 +2902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:40:35 GMT + - Tue, 02 Feb 2021 10:01:43 GMT expires: - '-1' pragma: @@ -2396,7 +2919,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29932 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29908 status: code: 200 message: OK @@ -2410,13 +2933,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2426,7 +2949,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:41:06 GMT + - Tue, 02 Feb 2021 10:02:13 GMT expires: - '-1' pragma: @@ -2443,7 +2966,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29929 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29906 status: code: 200 message: OK @@ -2457,13 +2980,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2473,7 +2996,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:41:37 GMT + - Tue, 02 Feb 2021 10:02:43 GMT expires: - '-1' pragma: @@ -2490,7 +3013,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29926 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29903 status: code: 200 message: OK @@ -2504,13 +3027,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2520,7 +3043,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:42:07 GMT + - Tue, 02 Feb 2021 10:03:13 GMT expires: - '-1' pragma: @@ -2537,7 +3060,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29923 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29900 status: code: 200 message: OK @@ -2551,13 +3074,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2567,7 +3090,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:42:37 GMT + - Tue, 02 Feb 2021 10:03:44 GMT expires: - '-1' pragma: @@ -2584,7 +3107,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29921 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29897 status: code: 200 message: OK @@ -2598,13 +3121,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2614,7 +3137,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:43:07 GMT + - Tue, 02 Feb 2021 10:04:14 GMT expires: - '-1' pragma: @@ -2631,7 +3154,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29918 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29894 status: code: 200 message: OK @@ -2645,13 +3168,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2661,7 +3184,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:43:38 GMT + - Tue, 02 Feb 2021 10:04:45 GMT expires: - '-1' pragma: @@ -2678,7 +3201,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29915 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29891 status: code: 200 message: OK @@ -2692,13 +3215,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2708,7 +3231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:44:08 GMT + - Tue, 02 Feb 2021 10:05:15 GMT expires: - '-1' pragma: @@ -2725,7 +3248,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29912 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29896 status: code: 200 message: OK @@ -2739,13 +3262,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2755,7 +3278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:44:38 GMT + - Tue, 02 Feb 2021 10:05:45 GMT expires: - '-1' pragma: @@ -2772,7 +3295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29909 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29893 status: code: 200 message: OK @@ -2786,13 +3309,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2802,7 +3325,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:45:09 GMT + - Tue, 02 Feb 2021 10:06:15 GMT expires: - '-1' pragma: @@ -2819,7 +3342,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29906 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29891 status: code: 200 message: OK @@ -2833,13 +3356,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2849,7 +3372,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:45:40 GMT + - Tue, 02 Feb 2021 10:06:46 GMT expires: - '-1' pragma: @@ -2866,7 +3389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29903 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29888 status: code: 200 message: OK @@ -2880,13 +3403,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2896,7 +3419,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:46:10 GMT + - Tue, 02 Feb 2021 10:07:17 GMT expires: - '-1' pragma: @@ -2913,7 +3436,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29901 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29885 status: code: 200 message: OK @@ -2927,13 +3450,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2943,7 +3466,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:46:40 GMT + - Tue, 02 Feb 2021 10:07:47 GMT expires: - '-1' pragma: @@ -2960,7 +3483,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29898 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29882 status: code: 200 message: OK @@ -2974,13 +3497,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -2990,7 +3513,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:47:11 GMT + - Tue, 02 Feb 2021 10:08:17 GMT expires: - '-1' pragma: @@ -3007,7 +3530,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29895 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29879 status: code: 200 message: OK @@ -3021,13 +3544,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3037,7 +3560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:47:41 GMT + - Tue, 02 Feb 2021 10:08:47 GMT expires: - '-1' pragma: @@ -3054,7 +3577,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29892 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29876 status: code: 200 message: OK @@ -3068,13 +3591,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3084,7 +3607,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:48:11 GMT + - Tue, 02 Feb 2021 10:09:18 GMT expires: - '-1' pragma: @@ -3101,7 +3624,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29889 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29873 status: code: 200 message: OK @@ -3115,13 +3638,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3131,7 +3654,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:48:41 GMT + - Tue, 02 Feb 2021 10:09:49 GMT expires: - '-1' pragma: @@ -3148,7 +3671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29886 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29870 status: code: 200 message: OK @@ -3162,13 +3685,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3178,7 +3701,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:49:13 GMT + - Tue, 02 Feb 2021 10:10:19 GMT expires: - '-1' pragma: @@ -3195,7 +3718,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29884 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29881 status: code: 200 message: OK @@ -3209,13 +3732,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3225,7 +3748,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:49:43 GMT + - Tue, 02 Feb 2021 10:10:49 GMT expires: - '-1' pragma: @@ -3242,7 +3765,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29881 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29878 status: code: 200 message: OK @@ -3256,13 +3779,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3272,7 +3795,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:50:13 GMT + - Tue, 02 Feb 2021 10:11:19 GMT expires: - '-1' pragma: @@ -3289,7 +3812,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29881 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29875 status: code: 200 message: OK @@ -3303,13 +3826,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3319,7 +3842,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:50:43 GMT + - Tue, 02 Feb 2021 10:11:49 GMT expires: - '-1' pragma: @@ -3336,7 +3859,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29878 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29872 status: code: 200 message: OK @@ -3350,13 +3873,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3366,7 +3889,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:51:15 GMT + - Tue, 02 Feb 2021 10:12:20 GMT expires: - '-1' pragma: @@ -3383,7 +3906,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29875 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29869 status: code: 200 message: OK @@ -3397,13 +3920,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3413,7 +3936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:51:45 GMT + - Tue, 02 Feb 2021 10:12:50 GMT expires: - '-1' pragma: @@ -3430,7 +3953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29872 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29866 status: code: 200 message: OK @@ -3444,13 +3967,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3460,7 +3983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:52:15 GMT + - Tue, 02 Feb 2021 10:13:21 GMT expires: - '-1' pragma: @@ -3477,7 +4000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29869 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29863 status: code: 200 message: OK @@ -3491,13 +4014,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3507,7 +4030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:52:46 GMT + - Tue, 02 Feb 2021 10:13:52 GMT expires: - '-1' pragma: @@ -3524,7 +4047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29867 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29860 status: code: 200 message: OK @@ -3538,13 +4061,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3554,7 +4077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:53:16 GMT + - Tue, 02 Feb 2021 10:14:22 GMT expires: - '-1' pragma: @@ -3571,7 +4094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29864 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29858 status: code: 200 message: OK @@ -3585,13 +4108,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3601,7 +4124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:53:46 GMT + - Tue, 02 Feb 2021 10:14:52 GMT expires: - '-1' pragma: @@ -3618,7 +4141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29861 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29855 status: code: 200 message: OK @@ -3632,13 +4155,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3648,7 +4171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:54:16 GMT + - Tue, 02 Feb 2021 10:15:22 GMT expires: - '-1' pragma: @@ -3665,7 +4188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29858 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29862 status: code: 200 message: OK @@ -3679,13 +4202,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3695,7 +4218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:54:46 GMT + - Tue, 02 Feb 2021 10:15:54 GMT expires: - '-1' pragma: @@ -3712,7 +4235,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29855 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29859 status: code: 200 message: OK @@ -3726,13 +4249,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3742,7 +4265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:55:18 GMT + - Tue, 02 Feb 2021 10:16:24 GMT expires: - '-1' pragma: @@ -3759,7 +4282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29864 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -3773,13 +4296,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3789,7 +4312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:55:48 GMT + - Tue, 02 Feb 2021 10:16:54 GMT expires: - '-1' pragma: @@ -3806,7 +4329,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29861 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29853 status: code: 200 message: OK @@ -3820,13 +4343,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3836,7 +4359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:56:18 GMT + - Tue, 02 Feb 2021 10:17:24 GMT expires: - '-1' pragma: @@ -3853,7 +4376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29859 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29851 status: code: 200 message: OK @@ -3867,13 +4390,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3883,7 +4406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:56:49 GMT + - Tue, 02 Feb 2021 10:17:54 GMT expires: - '-1' pragma: @@ -3900,7 +4423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29856 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29848 status: code: 200 message: OK @@ -3914,13 +4437,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3930,7 +4453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:57:20 GMT + - Tue, 02 Feb 2021 10:18:25 GMT expires: - '-1' pragma: @@ -3947,7 +4470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29853 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -3961,13 +4484,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -3977,7 +4500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:57:51 GMT + - Tue, 02 Feb 2021 10:18:55 GMT expires: - '-1' pragma: @@ -3994,7 +4517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29842 status: code: 200 message: OK @@ -4008,13 +4531,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4024,7 +4547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:58:21 GMT + - Tue, 02 Feb 2021 10:19:26 GMT expires: - '-1' pragma: @@ -4041,7 +4564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29847 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29839 status: code: 200 message: OK @@ -4055,13 +4578,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4071,7 +4594,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:58:51 GMT + - Tue, 02 Feb 2021 10:19:56 GMT expires: - '-1' pragma: @@ -4088,7 +4611,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29844 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29837 status: code: 200 message: OK @@ -4102,13 +4625,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4118,7 +4641,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:59:22 GMT + - Tue, 02 Feb 2021 10:20:26 GMT expires: - '-1' pragma: @@ -4135,7 +4658,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29841 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -4149,13 +4672,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4165,7 +4688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 04:59:52 GMT + - Tue, 02 Feb 2021 10:20:57 GMT expires: - '-1' pragma: @@ -4182,7 +4705,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29838 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29853 status: code: 200 message: OK @@ -4196,13 +4719,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4212,7 +4735,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:00:22 GMT + - Tue, 02 Feb 2021 10:21:27 GMT expires: - '-1' pragma: @@ -4229,7 +4752,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29856 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29850 status: code: 200 message: OK @@ -4243,13 +4766,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4259,7 +4782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:00:52 GMT + - Tue, 02 Feb 2021 10:21:57 GMT expires: - '-1' pragma: @@ -4276,7 +4799,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29854 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29847 status: code: 200 message: OK @@ -4290,13 +4813,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4306,7 +4829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:01:24 GMT + - Tue, 02 Feb 2021 10:22:27 GMT expires: - '-1' pragma: @@ -4323,7 +4846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29851 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29844 status: code: 200 message: OK @@ -4337,13 +4860,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4353,7 +4876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:01:54 GMT + - Tue, 02 Feb 2021 10:22:59 GMT expires: - '-1' pragma: @@ -4370,7 +4893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29848 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29842 status: code: 200 message: OK @@ -4384,13 +4907,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4400,7 +4923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:02:24 GMT + - Tue, 02 Feb 2021 10:23:29 GMT expires: - '-1' pragma: @@ -4417,7 +4940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29845 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29839 status: code: 200 message: OK @@ -4431,13 +4954,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4447,7 +4970,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:02:54 GMT + - Tue, 02 Feb 2021 10:23:59 GMT expires: - '-1' pragma: @@ -4464,7 +4987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29842 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29836 status: code: 200 message: OK @@ -4478,13 +5001,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4494,7 +5017,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:03:25 GMT + - Tue, 02 Feb 2021 10:24:29 GMT expires: - '-1' pragma: @@ -4511,7 +5034,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29839 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29833 status: code: 200 message: OK @@ -4525,13 +5048,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4541,7 +5064,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:03:55 GMT + - Tue, 02 Feb 2021 10:25:00 GMT expires: - '-1' pragma: @@ -4558,7 +5081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29837 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29858 status: code: 200 message: OK @@ -4572,13 +5095,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4588,7 +5111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:04:25 GMT + - Tue, 02 Feb 2021 10:25:30 GMT expires: - '-1' pragma: @@ -4605,7 +5128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29834 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29855 status: code: 200 message: OK @@ -4619,13 +5142,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4635,7 +5158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:04:56 GMT + - Tue, 02 Feb 2021 10:26:00 GMT expires: - '-1' pragma: @@ -4652,7 +5175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29831 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29853 status: code: 200 message: OK @@ -4666,13 +5189,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4682,7 +5205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:05:26 GMT + - Tue, 02 Feb 2021 10:26:31 GMT expires: - '-1' pragma: @@ -4699,7 +5222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29856 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29850 status: code: 200 message: OK @@ -4713,13 +5236,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4729,7 +5252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:05:57 GMT + - Tue, 02 Feb 2021 10:27:01 GMT expires: - '-1' pragma: @@ -4746,7 +5269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29853 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29847 status: code: 200 message: OK @@ -4760,13 +5283,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4776,7 +5299,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:06:27 GMT + - Tue, 02 Feb 2021 10:27:32 GMT expires: - '-1' pragma: @@ -4793,7 +5316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29844 status: code: 200 message: OK @@ -4807,13 +5330,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4823,7 +5346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:06:57 GMT + - Tue, 02 Feb 2021 10:28:02 GMT expires: - '-1' pragma: @@ -4840,7 +5363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29847 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29841 status: code: 200 message: OK @@ -4854,13 +5377,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4870,7 +5393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:07:28 GMT + - Tue, 02 Feb 2021 10:28:32 GMT expires: - '-1' pragma: @@ -4887,7 +5410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29845 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29839 status: code: 200 message: OK @@ -4901,13 +5424,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4917,7 +5440,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:07:58 GMT + - Tue, 02 Feb 2021 10:29:04 GMT expires: - '-1' pragma: @@ -4934,7 +5457,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29842 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29836 status: code: 200 message: OK @@ -4948,13 +5471,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -4964,7 +5487,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:08:28 GMT + - Tue, 02 Feb 2021 10:29:35 GMT expires: - '-1' pragma: @@ -4981,7 +5504,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29839 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29833 status: code: 200 message: OK @@ -4995,13 +5518,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5011,7 +5534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:08:58 GMT + - Tue, 02 Feb 2021 10:30:05 GMT expires: - '-1' pragma: @@ -5028,7 +5551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29836 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29859 status: code: 200 message: OK @@ -5042,13 +5565,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5058,7 +5581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:09:30 GMT + - Tue, 02 Feb 2021 10:30:35 GMT expires: - '-1' pragma: @@ -5075,7 +5598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29833 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -5089,13 +5612,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5105,7 +5628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:10:00 GMT + - Tue, 02 Feb 2021 10:31:05 GMT expires: - '-1' pragma: @@ -5122,7 +5645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29858 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29853 status: code: 200 message: OK @@ -5136,13 +5659,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5152,7 +5675,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:10:30 GMT + - Tue, 02 Feb 2021 10:31:35 GMT expires: - '-1' pragma: @@ -5169,7 +5692,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29855 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29850 status: code: 200 message: OK @@ -5183,13 +5706,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5199,7 +5722,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:11:00 GMT + - Tue, 02 Feb 2021 10:32:06 GMT expires: - '-1' pragma: @@ -5216,7 +5739,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29852 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29847 status: code: 200 message: OK @@ -5230,13 +5753,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5246,7 +5769,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:11:31 GMT + - Tue, 02 Feb 2021 10:32:37 GMT expires: - '-1' pragma: @@ -5263,7 +5786,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -5277,13 +5800,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5293,7 +5816,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:12:01 GMT + - Tue, 02 Feb 2021 10:33:07 GMT expires: - '-1' pragma: @@ -5310,7 +5833,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29847 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29842 status: code: 200 message: OK @@ -5324,13 +5847,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5340,7 +5863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:12:32 GMT + - Tue, 02 Feb 2021 10:33:38 GMT expires: - '-1' pragma: @@ -5357,7 +5880,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29844 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29839 status: code: 200 message: OK @@ -5371,13 +5894,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5387,7 +5910,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:13:02 GMT + - Tue, 02 Feb 2021 10:34:08 GMT expires: - '-1' pragma: @@ -5404,7 +5927,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29841 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29836 status: code: 200 message: OK @@ -5418,13 +5941,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5434,7 +5957,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:13:32 GMT + - Tue, 02 Feb 2021 10:34:40 GMT expires: - '-1' pragma: @@ -5451,7 +5974,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29838 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29833 status: code: 200 message: OK @@ -5465,13 +5988,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5481,7 +6004,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:14:03 GMT + - Tue, 02 Feb 2021 10:35:10 GMT expires: - '-1' pragma: @@ -5498,7 +6021,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29835 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29858 status: code: 200 message: OK @@ -5512,13 +6035,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5528,7 +6051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:14:33 GMT + - Tue, 02 Feb 2021 10:35:40 GMT expires: - '-1' pragma: @@ -5545,7 +6068,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29832 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -5559,13 +6082,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5575,7 +6098,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:15:03 GMT + - Tue, 02 Feb 2021 10:36:10 GMT expires: - '-1' pragma: @@ -5592,7 +6115,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29857 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29853 status: code: 200 message: OK @@ -5606,13 +6129,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5622,7 +6145,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:15:33 GMT + - Tue, 02 Feb 2021 10:36:41 GMT expires: - '-1' pragma: @@ -5639,7 +6162,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29854 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29850 status: code: 200 message: OK @@ -5653,13 +6176,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5669,7 +6192,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:16:05 GMT + - Tue, 02 Feb 2021 10:37:11 GMT expires: - '-1' pragma: @@ -5686,7 +6209,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29852 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29847 status: code: 200 message: OK @@ -5700,13 +6223,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5716,7 +6239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:16:35 GMT + - Tue, 02 Feb 2021 10:37:42 GMT expires: - '-1' pragma: @@ -5733,7 +6256,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29849 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29844 status: code: 200 message: OK @@ -5747,13 +6270,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5763,7 +6286,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:17:05 GMT + - Tue, 02 Feb 2021 10:38:13 GMT expires: - '-1' pragma: @@ -5780,7 +6303,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29846 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29841 status: code: 200 message: OK @@ -5794,13 +6317,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5810,7 +6333,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:17:35 GMT + - Tue, 02 Feb 2021 10:38:43 GMT expires: - '-1' pragma: @@ -5827,7 +6350,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29843 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29838 status: code: 200 message: OK @@ -5841,13 +6364,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5857,7 +6380,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:18:05 GMT + - Tue, 02 Feb 2021 10:39:13 GMT expires: - '-1' pragma: @@ -5874,7 +6397,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29840 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29836 status: code: 200 message: OK @@ -5888,13 +6411,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5904,7 +6427,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:18:36 GMT + - Tue, 02 Feb 2021 10:39:43 GMT expires: - '-1' pragma: @@ -5921,7 +6444,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29837 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29833 status: code: 200 message: OK @@ -5935,13 +6458,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5951,7 +6474,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:20:32 GMT + - Tue, 02 Feb 2021 10:40:14 GMT expires: - '-1' pragma: @@ -5968,7 +6491,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29858 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29859 status: code: 200 message: OK @@ -5982,13 +6505,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -5998,7 +6521,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:21:03 GMT + - Tue, 02 Feb 2021 10:40:44 GMT expires: - '-1' pragma: @@ -6015,7 +6538,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29855 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -6029,13 +6552,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\ + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\ \r\n}" headers: cache-control: @@ -6045,7 +6568,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:21:33 GMT + - Tue, 02 Feb 2021 10:41:15 GMT expires: - '-1' pragma: @@ -6062,7 +6585,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29853 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29853 status: code: 200 message: OK @@ -6076,14 +6599,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T04:31:59.8076734+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:22:00.3401009+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"3db59f80-460a-49e2-9da9-c9832eb6d6ac\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T09:51:34.7577751+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:41:35.4373577+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"abfe0b6c-6adc-497c-9377-fb717e046470\"\r\n}" headers: cache-control: - no-cache @@ -6092,7 +6615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:22:04 GMT + - Tue, 02 Feb 2021 10:41:45 GMT expires: - '-1' pragma: @@ -6109,7 +6632,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29850 status: code: 200 message: OK @@ -6123,9 +6646,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3db59f80-460a-49e2-9da9-c9832eb6d6ac?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/abfe0b6c-6adc-497c-9377-fb717e046470?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -6135,7 +6658,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 05:22:04 GMT + - Tue, 02 Feb 2021 10:41:45 GMT expires: - '-1' pragma: @@ -6148,7 +6671,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29849 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29849 status: code: 200 message: OK @@ -6167,7 +6690,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3?api-version=2020-06-01 response: @@ -6175,8 +6698,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset80f0ea3\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -6184,17 +6708,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -6214,21 +6739,21 @@ interactions: ,\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n \ \ }\r\n ]\r\n }\r\n },\r\n \"provisioningState\"\ : \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\"\ - : false,\r\n \"uniqueId\": \"1d2fad46-724b-47f1-9f0a-da8f777fe2e5\"\r\n\ + : false,\r\n \"uniqueId\": \"8389b083-e28d-4ec9-a9c3-d58e97982a4a\"\r\n\ \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bace97c2-22a5-4194-9360-699d538f16a2?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd418a20-ab8c-4656-81c1-1ddec3aa01ed?api-version=2020-06-01 cache-control: - no-cache content-length: - - '3311' + - '3450' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:22:11 GMT + - Tue, 02 Feb 2021 10:41:51 GMT expires: - '-1' pragma: @@ -6247,7 +6772,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '0' status: @@ -6263,23 +6788,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bace97c2-22a5-4194-9360-699d538f16a2?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd418a20-ab8c-4656-81c1-1ddec3aa01ed?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:22:07.0744405+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:22:07.183823+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"bace97c2-22a5-4194-9360-699d538f16a2\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:41:48.1716837+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:41:48.2810305+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"bd418a20-ab8c-4656-81c1-1ddec3aa01ed\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:22:21 GMT + - Tue, 02 Feb 2021 10:42:01 GMT expires: - '-1' pragma: @@ -6296,7 +6821,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29846 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29847 status: code: 200 message: OK @@ -6310,7 +6835,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3?api-version=2020-06-01 response: @@ -6318,8 +6843,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset80f0ea3\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -6327,17 +6853,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex80f0ea3/subnets/subnetnamex80f0ea3\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -6357,17 +6884,17 @@ interactions: ,\r\n \"typeHandlerVersion\": \"1.4\"\r\n }\r\n \ \ }\r\n ]\r\n }\r\n },\r\n \"provisioningState\"\ : \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\"\ - : false,\r\n \"uniqueId\": \"1d2fad46-724b-47f1-9f0a-da8f777fe2e5\"\r\n\ + : false,\r\n \"uniqueId\": \"8389b083-e28d-4ec9-a9c3-d58e97982a4a\"\r\n\ \ }\r\n}" headers: cache-control: - no-cache content-length: - - '3312' + - '3451' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:22:22 GMT + - Tue, 02 Feb 2021 10:42:01 GMT expires: - '-1' pragma: @@ -6402,7 +6929,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/restart?api-version=2020-06-01 response: @@ -6410,17 +6937,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c910fe27-b0df-4384-b78b-9cd33eeefd4a?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5c93925d-4e22-47e2-b99d-c80680fde166?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:22:22 GMT + - Tue, 02 Feb 2021 10:42:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c910fe27-b0df-4384-b78b-9cd33eeefd4a?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5c93925d-4e22-47e2-b99d-c80680fde166?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -6433,7 +6960,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' x-ms-request-charge: - '2' status: @@ -6449,23 +6976,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c910fe27-b0df-4384-b78b-9cd33eeefd4a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5c93925d-4e22-47e2-b99d-c80680fde166?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:22:22.7151417+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:22:24.1995464+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"c910fe27-b0df-4384-b78b-9cd33eeefd4a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:42:02.859316+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:42:26.7343296+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"5c93925d-4e22-47e2-b99d-c80680fde166\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:22:52 GMT + - Tue, 02 Feb 2021 10:42:33 GMT expires: - '-1' pragma: @@ -6482,7 +7009,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29844 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -6496,9 +7023,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c910fe27-b0df-4384-b78b-9cd33eeefd4a?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/5c93925d-4e22-47e2-b99d-c80680fde166?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -6508,7 +7035,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 05:22:53 GMT + - Tue, 02 Feb 2021 10:42:33 GMT expires: - '-1' pragma: @@ -6521,7 +7048,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29843 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29844 status: code: 200 message: OK @@ -6539,7 +7066,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/poweroff?skipShutdown=false&api-version=2020-06-01 response: @@ -6547,17 +7074,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44d27493-51eb-449b-97c0-dc3e847b56d3?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/40beb0ef-ca7b-4248-8820-c4defef3d7cc?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:22:53 GMT + - Tue, 02 Feb 2021 10:42:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44d27493-51eb-449b-97c0-dc3e847b56d3?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/40beb0ef-ca7b-4248-8820-c4defef3d7cc?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -6570,7 +7097,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-ms-request-charge: - '2' status: @@ -6586,14 +7113,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44d27493-51eb-449b-97c0-dc3e847b56d3?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/40beb0ef-ca7b-4248-8820-c4defef3d7cc?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:22:53.9339271+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:23:02.7932546+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"44d27493-51eb-449b-97c0-dc3e847b56d3\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:42:34.0156053+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:42:44.9843604+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"40beb0ef-ca7b-4248-8820-c4defef3d7cc\"\r\n}" headers: cache-control: - no-cache @@ -6602,7 +7129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:23:24 GMT + - Tue, 02 Feb 2021 10:43:05 GMT expires: - '-1' pragma: @@ -6619,7 +7146,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29841 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29841 status: code: 200 message: OK @@ -6633,9 +7160,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/44d27493-51eb-449b-97c0-dc3e847b56d3?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/40beb0ef-ca7b-4248-8820-c4defef3d7cc?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -6645,7 +7172,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 05:23:24 GMT + - Tue, 02 Feb 2021 10:43:06 GMT expires: - '-1' pragma: @@ -6658,7 +7185,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29840 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29840 status: code: 200 message: OK @@ -6676,7 +7203,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/start?api-version=2020-06-01 response: @@ -6684,17 +7211,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5106d46-2143-48b3-bcc9-9cbc0b28be67?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23192a70-1218-47fa-8e59-afc2e2685d4c?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:23:24 GMT + - Tue, 02 Feb 2021 10:43:07 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5106d46-2143-48b3-bcc9-9cbc0b28be67?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23192a70-1218-47fa-8e59-afc2e2685d4c?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -6707,7 +7234,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' x-ms-request-charge: - '2' status: @@ -6723,23 +7250,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5106d46-2143-48b3-bcc9-9cbc0b28be67?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23192a70-1218-47fa-8e59-afc2e2685d4c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:23:25.4183254+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:23:33.5432832+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"c5106d46-2143-48b3-bcc9-9cbc0b28be67\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:43:07.343774+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:43:15.3437447+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"23192a70-1218-47fa-8e59-afc2e2685d4c\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:23:55 GMT + - Tue, 02 Feb 2021 10:43:37 GMT expires: - '-1' pragma: @@ -6756,7 +7283,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29838 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29838 status: code: 200 message: OK @@ -6770,9 +7297,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/c5106d46-2143-48b3-bcc9-9cbc0b28be67?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/23192a70-1218-47fa-8e59-afc2e2685d4c?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -6782,7 +7309,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 05:23:55 GMT + - Tue, 02 Feb 2021 10:43:37 GMT expires: - '-1' pragma: @@ -6795,7 +7322,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29837 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29837 status: code: 200 message: OK @@ -6813,7 +7340,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/poweroff?skipShutdown=false&api-version=2020-06-01 response: @@ -6821,17 +7348,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a76263fb-3e8a-40c2-899d-456596f86fba?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/10ac2240-d37f-4ec4-9ab5-52217f6fdfa9?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:23:55 GMT + - Tue, 02 Feb 2021 10:43:38 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a76263fb-3e8a-40c2-899d-456596f86fba?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/10ac2240-d37f-4ec4-9ab5-52217f6fdfa9?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -6844,7 +7371,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteVMScaleSet3Min;78,Microsoft.Compute/DeleteVMScaleSet30Min;398,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1192,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' x-ms-request-charge: - '2' status: @@ -6860,23 +7387,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a76263fb-3e8a-40c2-899d-456596f86fba?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/10ac2240-d37f-4ec4-9ab5-52217f6fdfa9?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:23:56.5586859+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:24:15.418198+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"a76263fb-3e8a-40c2-899d-456596f86fba\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:43:38.4687955+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:43:52.7813232+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"10ac2240-d37f-4ec4-9ab5-52217f6fdfa9\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:24:27 GMT + - Tue, 02 Feb 2021 10:44:08 GMT expires: - '-1' pragma: @@ -6893,7 +7420,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29835 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29835 status: code: 200 message: OK @@ -6907,9 +7434,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a76263fb-3e8a-40c2-899d-456596f86fba?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/10ac2240-d37f-4ec4-9ab5-52217f6fdfa9?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -6919,7 +7446,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 05:24:27 GMT + - Tue, 02 Feb 2021 10:44:08 GMT expires: - '-1' pragma: @@ -6932,7 +7459,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29834 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29834 status: code: 200 message: OK @@ -6950,7 +7477,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/extensions/vmssextensionx80f0ea3?api-version=2020-06-01 response: @@ -6961,7 +7488,7 @@ interactions: \ \"autoUpgradeMinorVersion\": true\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a181d6cb-69cc-453c-b39b-60740aa54961?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67b09103-75c5-4811-a2e1-befa19e15bdb?api-version=2020-06-01 cache-control: - no-cache content-length: @@ -6969,7 +7496,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:24:28 GMT + - Tue, 02 Feb 2021 10:44:09 GMT expires: - '-1' pragma: @@ -6984,7 +7511,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-ms-request-charge: - '0' status: @@ -7000,23 +7527,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a181d6cb-69cc-453c-b39b-60740aa54961?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67b09103-75c5-4811-a2e1-befa19e15bdb?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:24:27.918341+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:24:28.1058257+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"a181d6cb-69cc-453c-b39b-60740aa54961\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:44:09.7970127+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:44:10.0001242+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"67b09103-75c5-4811-a2e1-befa19e15bdb\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:24:38 GMT + - Tue, 02 Feb 2021 10:44:19 GMT expires: - '-1' pragma: @@ -7033,7 +7560,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29832 + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29833 status: code: 200 message: OK @@ -7047,7 +7574,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/extensions/vmssextensionx80f0ea3?api-version=2020-06-01 response: @@ -7066,7 +7593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:24:38 GMT + - Tue, 02 Feb 2021 10:44:20 GMT expires: - '-1' pragma: @@ -7083,7 +7610,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31999 + - Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31994 status: code: 200 message: OK @@ -7099,7 +7626,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/extensions/vmssextensionx80f0ea3?api-version=2020-06-01 response: @@ -7107,17 +7634,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fefb4e0f-5d1d-43d2-bd20-6a1653ee50f6?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ecf15a0b-d660-439c-97fc-55a450a12b96?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:24:39 GMT + - Tue, 02 Feb 2021 10:44:20 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fefb4e0f-5d1d-43d2-bd20-6a1653ee50f6?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ecf15a0b-d660-439c-97fc-55a450a12b96?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -7146,14 +7673,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/fefb4e0f-5d1d-43d2-bd20-6a1653ee50f6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ecf15a0b-d660-439c-97fc-55a450a12b96?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:24:39.1526592+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:24:39.4807914+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"fefb4e0f-5d1d-43d2-bd20-6a1653ee50f6\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:44:21.0781976+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:44:21.4375615+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"ecf15a0b-d660-439c-97fc-55a450a12b96\"\r\n}" headers: cache-control: - no-cache @@ -7162,7 +7689,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:24:49 GMT + - Tue, 02 Feb 2021 10:44:31 GMT expires: - '-1' pragma: @@ -7179,7 +7706,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29831 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29832 status: code: 200 message: OK @@ -7197,7 +7724,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/redeploy?api-version=2020-06-01 response: @@ -7205,17 +7732,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2db569e8-6a40-4f73-ac7b-3d9b72b8265c?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/82e38a28-a4f2-4b20-83ea-84bc057bdb5e?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:24:50 GMT + - Tue, 02 Feb 2021 10:44:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2db569e8-6a40-4f73-ac7b-3d9b72b8265c?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/82e38a28-a4f2-4b20-83ea-84bc057bdb5e?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -7226,9 +7753,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;234,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;4798 + - Microsoft.Compute/VMScaleSetActions3Min;235,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1194' x-ms-request-charge: - '2' status: @@ -7244,13 +7771,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2db569e8-6a40-4f73-ac7b-3d9b72b8265c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/82e38a28-a4f2-4b20-83ea-84bc057bdb5e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:24:50.2620787+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"2db569e8-6a40-4f73-ac7b-3d9b72b8265c\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:44:32.1563326+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"82e38a28-a4f2-4b20-83ea-84bc057bdb5e\"\ \r\n}" headers: cache-control: @@ -7260,7 +7787,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:25:20 GMT + - Tue, 02 Feb 2021 10:45:01 GMT expires: - '-1' pragma: @@ -7277,7 +7804,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29856 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29857 status: code: 200 message: OK @@ -7291,23 +7818,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2db569e8-6a40-4f73-ac7b-3d9b72b8265c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/82e38a28-a4f2-4b20-83ea-84bc057bdb5e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:24:50.2620787+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"2db569e8-6a40-4f73-ac7b-3d9b72b8265c\"\ - \r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:44:32.1563326+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:45:04.5157762+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"82e38a28-a4f2-4b20-83ea-84bc057bdb5e\"\r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:25:50 GMT + - Tue, 02 Feb 2021 10:45:33 GMT expires: - '-1' pragma: @@ -7324,7 +7851,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29853 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29854 status: code: 200 message: OK @@ -7338,23 +7865,19 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2db569e8-6a40-4f73-ac7b-3d9b72b8265c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/82e38a28-a4f2-4b20-83ea-84bc057bdb5e?monitor=true&api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:24:50.2620787+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"2db569e8-6a40-4f73-ac7b-3d9b72b8265c\"\ - \r\n}" + string: '' headers: cache-control: - no-cache content-length: - - '134' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 20 Jan 2021 05:26:20 GMT + - Tue, 02 Feb 2021 10:45:33 GMT expires: - '-1' pragma: @@ -7364,14 +7887,10 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29853 status: code: 200 message: OK @@ -7384,26 +7903,30 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' + Content-Type: + - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2db569e8-6a40-4f73-ac7b-3d9b72b8265c?api-version=2020-06-01 + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/deallocate?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:24:50.2620787+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"2db569e8-6a40-4f73-ac7b-3d9b72b8265c\"\ - \r\n}" + string: '' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3?api-version=2020-06-01 cache-control: - no-cache content-length: - - '134' - content-type: - - application/json; charset=utf-8 + - '0' date: - - Wed, 20 Jan 2021 05:26:51 GMT + - Tue, 02 Feb 2021 10:45:33 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -7411,17 +7934,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29847 + - Microsoft.Compute/DeleteVMScaleSet3Min;78,Microsoft.Compute/DeleteVMScaleSet30Min;397,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1188,Microsoft.Compute/VmssQueuedVMOperations;4798 + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + x-ms-request-charge: + - '2' status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -7432,23 +7955,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2db569e8-6a40-4f73-ac7b-3d9b72b8265c?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:24:50.2620787+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:26:53.1370793+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"2db569e8-6a40-4f73-ac7b-3d9b72b8265c\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:45:33.9064538+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:27:22 GMT + - Tue, 02 Feb 2021 10:46:04 GMT expires: - '-1' pragma: @@ -7465,100 +7988,10 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29845 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2db569e8-6a40-4f73-ac7b-3d9b72b8265c?monitor=true&api-version=2020-06-01 - response: - body: - string: '' - headers: - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 20 Jan 2021 05:27:22 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29844 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29851 status: code: 200 message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - Content-Type: - - application/json - User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3/deallocate?api-version=2020-06-01 - response: - body: - string: '' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3082265c-a349-400e-906b-590708d9b523?api-version=2020-06-01 - cache-control: - - no-cache - content-length: - - '0' - date: - - Wed, 20 Jan 2021 05:27:22 GMT - expires: - - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3082265c-a349-400e-906b-590708d9b523?monitor=true&api-version=2020-06-01 - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;397,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1192,Microsoft.Compute/VmssQueuedVMOperations;4798 - x-ms-ratelimit-remaining-subscription-writes: - - '1194' - x-ms-request-charge: - - '2' - status: - code: 202 - message: Accepted - request: body: null headers: @@ -7569,13 +8002,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3082265c-a349-400e-906b-590708d9b523?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:27:23.1214715+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"3082265c-a349-400e-906b-590708d9b523\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:45:33.9064538+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3\"\ \r\n}" headers: cache-control: @@ -7585,7 +8018,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:27:53 GMT + - Tue, 02 Feb 2021 10:46:34 GMT expires: - '-1' pragma: @@ -7602,7 +8035,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29842 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29848 status: code: 200 message: OK @@ -7616,23 +8049,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3082265c-a349-400e-906b-590708d9b523?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:27:23.1214715+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:28:03.792445+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"3082265c-a349-400e-906b-590708d9b523\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:45:33.9064538+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:46:39.2815114+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:28:23 GMT + - Tue, 02 Feb 2021 10:47:04 GMT expires: - '-1' pragma: @@ -7649,7 +8082,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29839 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29846 status: code: 200 message: OK @@ -7663,9 +8096,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3082265c-a349-400e-906b-590708d9b523?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d5a7dff-f0da-4caf-b1a4-41c834b8b3a3?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -7675,7 +8108,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 05:28:23 GMT + - Tue, 02 Feb 2021 10:47:04 GMT expires: - '-1' pragma: @@ -7688,7 +8121,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29838 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -7704,7 +8137,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset80f0ea3?api-version=2020-06-01 response: @@ -7714,17 +8147,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/85698384-dc63-463f-ad9b-4144860010a7?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4e2fa275-0a24-4724-839a-59e975078ee4?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:28:24 GMT + - Tue, 02 Feb 2021 10:47:05 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/85698384-dc63-463f-ad9b-4144860010a7?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4e2fa275-0a24-4724-839a-59e975078ee4?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -7735,7 +8168,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;78,Microsoft.Compute/DeleteVMScaleSet30Min;396,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1194,Microsoft.Compute/VmssQueuedVMOperations;4798 + - Microsoft.Compute/DeleteVMScaleSet3Min;78,Microsoft.Compute/DeleteVMScaleSet30Min;396,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-deletes: - '14998' x-ms-request-charge: @@ -7753,23 +8186,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/85698384-dc63-463f-ad9b-4144860010a7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4e2fa275-0a24-4724-839a-59e975078ee4?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:28:24.8548134+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:28:25.854864+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"85698384-dc63-463f-ad9b-4144860010a7\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:47:06.0628624+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:47:07.0315934+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"4e2fa275-0a24-4724-839a-59e975078ee4\"\r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '184' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:28:35 GMT + - Tue, 02 Feb 2021 10:47:15 GMT expires: - '-1' pragma: @@ -7786,7 +8219,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29836 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29843 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_base_2.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_base_2.yaml index 8b0ddc2d3a31..7981aa586030 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_base_2.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_base_2.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexd7d31356\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356\"\ - ,\r\n \"etag\": \"W/\\\"19f255e1-b742-429d-8f03-db7c53122a8e\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"130e851b-6797-4f5b-8f8d-80296eeb1deb\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"b9a55d1b-b799-45e6-b059-3eb042bd4660\",\r\n \"\ + \ \"resourceGuid\": \"01bf91d5-7310-4710-8d55-85c148a34c4c\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/023c4f4f-b64d-4a54-bf83-175f98a8b718?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec7ca0f-7c8d-4ce6-9ae8-f8b4d8cb8ea0?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:27 GMT + - Tue, 02 Feb 2021 10:47:35 GMT expires: - '-1' pragma: @@ -53,7 +53,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ccc19376-b2c2-43ed-9a63-fe3f50e61f86 + - d268b210-8637-4eb5-bd6f-31f72a1a1484 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/023c4f4f-b64d-4a54-bf83-175f98a8b718?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/6ec7ca0f-7c8d-4ce6-9ae8-f8b4d8cb8ea0?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:31 GMT + - Tue, 02 Feb 2021 10:47:39 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 32fb94fd-a8aa-4189-9cd2-bafb6d139f60 + - 859cbd2a-fd07-4405-bdc1-3405f44afb28 status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexd7d31356\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356\"\ - ,\r\n \"etag\": \"W/\\\"58a45dcf-8451-482a-bf3d-56df54fad233\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"5ddbb997-8dc7-4da4-8c23-c690ba0b373e\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"b9a55d1b-b799-45e6-b059-3eb042bd4660\",\r\n \"\ + \ \"resourceGuid\": \"01bf91d5-7310-4710-8d55-85c148a34c4c\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:31 GMT + - Tue, 02 Feb 2021 10:47:39 GMT etag: - - W/"58a45dcf-8451-482a-bf3d-56df54fad233" + - W/"5ddbb997-8dc7-4da4-8c23-c690ba0b373e" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ea9163b-b693-4abe-9272-874af71fc50e + - ccf2ea30-05b7-4edc-b5c5-9eb153869c8d status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356/subnets/subnetnamexd7d31356?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356/subnets/subnetnamexd7d31356?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamexd7d31356\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356/subnets/subnetnamexd7d31356\"\ - ,\r\n \"etag\": \"W/\\\"f01b9c4f-a071-4042-909c-53c9c41ef2ef\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4a070c27-151a-40e9-a109-94c71b439ed5\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b593e0b7-67d9-4c1b-9c2f-39321a9a7d68?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/11db84ea-aeb0-4a0a-9e74-21480a50b44d?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:32 GMT + - Tue, 02 Feb 2021 10:47:40 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 12cc90ab-e862-40d3-93d7-63ca5affc733 + - b8e01ae3-5d86-4d6f-9e9d-6ec6283b6d2f x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b593e0b7-67d9-4c1b-9c2f-39321a9a7d68?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/11db84ea-aeb0-4a0a-9e74-21480a50b44d?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:35 GMT + - Tue, 02 Feb 2021 10:47:43 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 01857223-736d-4ea2-8a2c-856ca86c9519 + - 49dabedb-f0b0-42bc-a7e5-35dac600f06f status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356/subnets/subnetnamexd7d31356?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356/subnets/subnetnamexd7d31356?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamexd7d31356\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexd7d31356/subnets/subnetnamexd7d31356\"\ - ,\r\n \"etag\": \"W/\\\"21d870b1-a94a-4db9-87ee-84e7a8026927\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"d32d4e38-b210-4898-940e-e0db47ec06a8\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:36 GMT + - Tue, 02 Feb 2021 10:47:44 GMT etag: - - W/"21d870b1-a94a-4db9-87ee-84e7a8026927" + - W/"d32d4e38-b210-4898-940e-e0db47ec06a8" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c5751932-a325-4f79-9b7c-67eab29401d6 + - f151af99-700d-46b4-b43a-31e53ab91cac status: code: 200 message: OK @@ -325,15 +325,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/publicIPAddresses/public_ip_address_name?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/publicIPAddresses/public_ip_address_name?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"public_ip_address_name\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/publicIPAddresses/public_ip_address_name\"\ - ,\r\n \"etag\": \"W/\\\"2cb9fba0-fef3-4f5b-a42f-57dfa5528b0d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"49ed0613-b353-4fa1-8cac-7bba0e156a52\\\"\",\r\n \ \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Updating\",\r\n \"resourceGuid\": \"7818ea90-cdc6-402e-bbff-c8f58bafa709\"\ + : \"Updating\",\r\n \"resourceGuid\": \"860c5d7f-a3ed-4713-852b-fc31ccab27de\"\ ,\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\"\ : \"Static\",\r\n \"idleTimeoutInMinutes\": 10,\r\n \"ipTags\": []\r\ \n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\"\ @@ -343,7 +343,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/26deb528-69ce-4279-afe8-a7b91762d0eb?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/827d76c4-ccaf-4fbd-9dd4-69ee69dfcb3d?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -351,7 +351,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:39 GMT + - Tue, 02 Feb 2021 10:47:49 GMT expires: - '-1' pragma: @@ -364,7 +364,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d641688-0298-4002-9b04-3f56facf1c1f + - 3e4ca46b-d178-4d48-9bdd-0eddef6f039e x-ms-ratelimit-remaining-subscription-writes: - '1197' status: @@ -380,9 +380,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/26deb528-69ce-4279-afe8-a7b91762d0eb?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/827d76c4-ccaf-4fbd-9dd4-69ee69dfcb3d?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -394,7 +394,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:41 GMT + - Tue, 02 Feb 2021 10:47:51 GMT expires: - '-1' pragma: @@ -411,7 +411,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 863aac9a-f49b-498b-9414-2dcdf5631863 + - 34b56a7f-e16c-4acb-9362-3bcfa6c14c77 status: code: 200 message: OK @@ -425,16 +425,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/publicIPAddresses/public_ip_address_name?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/publicIPAddresses/public_ip_address_name?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"public_ip_address_name\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/publicIPAddresses/public_ip_address_name\"\ - ,\r\n \"etag\": \"W/\\\"0a3df8bb-354b-4380-8251-7df145e6411d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8cc65b5a-1c4e-49ad-809f-891b400e8374\\\"\",\r\n \ \ \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\"\ - : \"Succeeded\",\r\n \"resourceGuid\": \"7818ea90-cdc6-402e-bbff-c8f58bafa709\"\ - ,\r\n \"ipAddress\": \"20.62.137.65\",\r\n \"publicIPAddressVersion\"\ + : \"Succeeded\",\r\n \"resourceGuid\": \"860c5d7f-a3ed-4713-852b-fc31ccab27de\"\ + ,\r\n \"ipAddress\": \"52.168.6.12\",\r\n \"publicIPAddressVersion\"\ : \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\"\ : 10,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\ ,\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\ @@ -443,13 +443,13 @@ interactions: cache-control: - no-cache content-length: - - '755' + - '754' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:41 GMT + - Tue, 02 Feb 2021 10:47:51 GMT etag: - - W/"0a3df8bb-354b-4380-8251-7df145e6411d" + - W/"8cc65b5a-1c4e-49ad-809f-891b400e8374" expires: - '-1' pragma: @@ -466,7 +466,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ed7e2c94-727a-46b1-95cb-c4e697589ce1 + - 8a0a556b-1ddb-4b37-91b0-bbd55e64fdc6 status: code: 200 message: OK @@ -499,19 +499,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"myLoadBalancer\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"20022fd2-47d5-4be9-8de4-a6e3b6e44205\",\r\n \"\ + \ \"resourceGuid\": \"7051cdf6-94ad-436d-a6c2-968d8ec5fdb2\",\r\n \"\ frontendIPConfigurations\": [\r\n {\r\n \"name\": \"myFrontendIpconfiguration\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/frontendIPConfigurations/myFrontendIpconfiguration\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\ @@ -524,7 +524,7 @@ interactions: : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\ : [\r\n {\r\n \"name\": \"myBackendAddressPool\",\r\n \"\ id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/backendAddressPools/myBackendAddressPool\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"loadBalancerBackendAddresses\": [],\r\n \"outboundRules\"\ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/outboundRules/myOutboundRule\"\ @@ -533,7 +533,7 @@ interactions: \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\ \r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \ \ \"name\": \"myLoadBalancingRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/loadBalancingRules/myLoadBalancingRule\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/frontendIPConfigurations/myFrontendIpconfiguration\"\ @@ -546,7 +546,7 @@ interactions: \r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/probes/myProbe\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\ \ {\r\n \"name\": \"myProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/probes/myProbe\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \ \ \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\"\ @@ -556,7 +556,7 @@ interactions: \r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundRules\"\ : [\r\n {\r\n \"name\": \"myOutboundRule\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/outboundRules/myOutboundRule\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/outboundRules\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"allocatedOutboundPorts\": 1024,\r\n \"protocol\"\ @@ -571,7 +571,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7dac29b2-2a76-4d2c-a899-f60d2870e7f9?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4572a192-70f6-4aa7-8d13-0c67c7d7e021?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -579,7 +579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:43:46 GMT + - Tue, 02 Feb 2021 10:47:55 GMT expires: - '-1' pragma: @@ -592,7 +592,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 551aade0-33a1-4428-9eff-c9747ff2a747 + - 08164030-9c1f-4744-86ff-46ec10da5649 x-ms-ratelimit-remaining-subscription-writes: - '1196' status: @@ -608,9 +608,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/7dac29b2-2a76-4d2c-a899-f60d2870e7f9?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4572a192-70f6-4aa7-8d13-0c67c7d7e021?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -622,7 +622,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:44:16 GMT + - Tue, 02 Feb 2021 10:48:26 GMT expires: - '-1' pragma: @@ -639,7 +639,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7fa1592d-04d9-47d1-b8e8-f74f3f88715b + - ebe2340e-0a08-4e60-a990-b3c038bc0925 status: code: 200 message: OK @@ -653,19 +653,19 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"myLoadBalancer\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"20022fd2-47d5-4be9-8de4-a6e3b6e44205\",\r\n \"\ + \ \"resourceGuid\": \"7051cdf6-94ad-436d-a6c2-968d8ec5fdb2\",\r\n \"\ frontendIPConfigurations\": [\r\n {\r\n \"name\": \"myFrontendIpconfiguration\"\ ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/frontendIPConfigurations/myFrontendIpconfiguration\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"\ @@ -675,10 +675,11 @@ interactions: \r\n }\r\n ],\r\n \"outboundRules\": [\r\n \ \ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/outboundRules/myOutboundRule\"\ \r\n }\r\n ],\r\n \"privateIPAddressVersion\"\ - : \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\"\ - : [\r\n {\r\n \"name\": \"myBackendAddressPool\",\r\n \"\ - id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/backendAddressPools/myBackendAddressPool\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + : \"IPv4\"\r\n },\r\n \"zones\": [\r\n \"1\",\r\n \ + \ \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n\ + \ \"backendAddressPools\": [\r\n {\r\n \"name\": \"myBackendAddressPool\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/backendAddressPools/myBackendAddressPool\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"loadBalancerBackendAddresses\": [],\r\n \"outboundRules\"\ : [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/outboundRules/myOutboundRule\"\ @@ -687,7 +688,7 @@ interactions: \r\n }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\ \r\n }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \ \ \"name\": \"myLoadBalancingRule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/loadBalancingRules/myLoadBalancingRule\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/frontendIPConfigurations/myFrontendIpconfiguration\"\ @@ -700,7 +701,7 @@ interactions: \r\n },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/probes/myProbe\"\ \r\n }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n\ \ {\r\n \"name\": \"myProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/probes/myProbe\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"protocol\": \"Http\",\r\n \"port\": 80,\r\n \ \ \"requestPath\": \"healthcheck.aspx\",\r\n \"intervalInSeconds\"\ @@ -710,7 +711,7 @@ interactions: \r\n }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"outboundRules\"\ : [\r\n {\r\n \"name\": \"myOutboundRule\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/outboundRules/myOutboundRule\"\ - ,\r\n \"etag\": \"W/\\\"13448a21-0e4d-4cfd-9a51-7fac2828fe60\\\"\"\ + ,\r\n \"etag\": \"W/\\\"b888897d-b55c-407b-876d-136a59fa5eba\\\"\"\ ,\r\n \"type\": \"Microsoft.Network/loadBalancers/outboundRules\",\r\ \n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\ ,\r\n \"allocatedOutboundPorts\": 1024,\r\n \"protocol\"\ @@ -725,13 +726,13 @@ interactions: cache-control: - no-cache content-length: - - '7776' + - '7855' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:44:17 GMT + - Tue, 02 Feb 2021 10:48:26 GMT etag: - - W/"13448a21-0e4d-4cfd-9a51-7fac2828fe60" + - W/"b888897d-b55c-407b-876d-136a59fa5eba" expires: - '-1' pragma: @@ -748,7 +749,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fa7256b5-f26e-48da-ae11-03a4f6f5cffc + - e9372ad1-6da4-41bd-b89b-d0115486700c status: code: 200 message: OK @@ -779,7 +780,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetd7d31356?api-version=2020-06-01 response: @@ -787,8 +788,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescalesetd7d31356\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetd7d31356\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -796,14 +798,15 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/probes/myProbe\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/probes/myProbe\"\ },\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ @@ -824,22 +827,22 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"d889c7a3-e7b7-4cc7-bebf-3c519034ee79\",\r\n \"automaticRepairsPolicy\"\ + : \"45e34601-3337-4e92-8d3f-c541e0c68ca2\",\r\n \"automaticRepairsPolicy\"\ : {\r\n \"enabled\": true,\r\n \"gracePeriod\": \"PT30M\",\r\n \ \ \"repairAction\": \"Replace\"\r\n }\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 cache-control: - no-cache content-length: - - '3645' + - '3784' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:44:23 GMT + - Tue, 02 Feb 2021 10:48:38 GMT expires: - '-1' pragma: @@ -852,9 +855,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4796 + - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1190,Microsoft.Compute/VmssQueuedVMOperations;4796 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' x-ms-request-charge: - '4' status: @@ -870,13 +873,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -886,7 +889,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:44:35 GMT + - Tue, 02 Feb 2021 10:48:48 GMT expires: - '-1' pragma: @@ -903,7 +906,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29919 + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29842 status: code: 200 message: OK @@ -917,13 +920,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -933,7 +936,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:46:11 GMT + - Tue, 02 Feb 2021 10:50:25 GMT expires: - '-1' pragma: @@ -950,7 +953,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29945 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29868 status: code: 200 message: OK @@ -964,13 +967,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -980,7 +983,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:46:42 GMT + - Tue, 02 Feb 2021 10:50:56 GMT expires: - '-1' pragma: @@ -997,7 +1000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29943 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29866 status: code: 200 message: OK @@ -1011,13 +1014,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1027,7 +1030,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:47:13 GMT + - Tue, 02 Feb 2021 10:51:27 GMT expires: - '-1' pragma: @@ -1044,7 +1047,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29942 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29865 status: code: 200 message: OK @@ -1058,13 +1061,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1074,7 +1077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:47:43 GMT + - Tue, 02 Feb 2021 10:51:57 GMT expires: - '-1' pragma: @@ -1091,7 +1094,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29941 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29864 status: code: 200 message: OK @@ -1105,13 +1108,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1121,7 +1124,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:48:13 GMT + - Tue, 02 Feb 2021 10:52:27 GMT expires: - '-1' pragma: @@ -1138,7 +1141,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29940 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29863 status: code: 200 message: OK @@ -1152,13 +1155,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1168,7 +1171,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:48:43 GMT + - Tue, 02 Feb 2021 10:52:58 GMT expires: - '-1' pragma: @@ -1185,7 +1188,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29938 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29861 status: code: 200 message: OK @@ -1199,13 +1202,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1215,7 +1218,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:49:14 GMT + - Tue, 02 Feb 2021 10:53:29 GMT expires: - '-1' pragma: @@ -1232,7 +1235,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29937 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29860 status: code: 200 message: OK @@ -1246,13 +1249,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1262,7 +1265,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:49:45 GMT + - Tue, 02 Feb 2021 10:53:59 GMT expires: - '-1' pragma: @@ -1279,7 +1282,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29936 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29859 status: code: 200 message: OK @@ -1293,13 +1296,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1309,7 +1312,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:50:15 GMT + - Tue, 02 Feb 2021 10:54:29 GMT expires: - '-1' pragma: @@ -1326,7 +1329,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29966 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29858 status: code: 200 message: OK @@ -1340,13 +1343,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1356,7 +1359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:50:45 GMT + - Tue, 02 Feb 2021 10:54:59 GMT expires: - '-1' pragma: @@ -1373,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29964 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29884 status: code: 200 message: OK @@ -1387,13 +1390,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1403,7 +1406,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:51:15 GMT + - Tue, 02 Feb 2021 10:55:30 GMT expires: - '-1' pragma: @@ -1420,7 +1423,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29963 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29883 status: code: 200 message: OK @@ -1434,13 +1437,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1450,7 +1453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:51:45 GMT + - Tue, 02 Feb 2021 10:56:00 GMT expires: - '-1' pragma: @@ -1467,7 +1470,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29962 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29882 status: code: 200 message: OK @@ -1481,13 +1484,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\ \r\n}" headers: cache-control: @@ -1497,7 +1500,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:52:17 GMT + - Tue, 02 Feb 2021 10:56:31 GMT expires: - '-1' pragma: @@ -1514,7 +1517,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29961 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29881 status: code: 200 message: OK @@ -1528,14 +1531,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8d0fbcc5-6a4d-42ff-9518-76750d13845b?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a25a9bb8-94d5-4322-83fa-6b375e4dd4ab?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:44:22.5744276+00:00\",\r\n \"\ - endTime\": \"2021-01-20T05:52:34.3554664+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"8d0fbcc5-6a4d-42ff-9518-76750d13845b\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:48:35.1722875+00:00\",\r\n \"\ + endTime\": \"2021-02-02T10:57:00.9243818+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"a25a9bb8-94d5-4322-83fa-6b375e4dd4ab\"\r\n}" headers: cache-control: - no-cache @@ -1544,7 +1547,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:52:47 GMT + - Tue, 02 Feb 2021 10:57:01 GMT expires: - '-1' pragma: @@ -1561,7 +1564,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29958 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29879 status: code: 200 message: OK @@ -1575,7 +1578,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetd7d31356?api-version=2020-06-01 response: @@ -1583,8 +1586,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescalesetd7d31356\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetd7d31356\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -1592,14 +1596,15 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/probes/myProbe\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/loadBalancers/myLoadBalancer/probes/myProbe\"\ },\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ @@ -1620,18 +1625,18 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"d889c7a3-e7b7-4cc7-bebf-3c519034ee79\",\r\n \"automaticRepairsPolicy\"\ + : \"45e34601-3337-4e92-8d3f-c541e0c68ca2\",\r\n \"automaticRepairsPolicy\"\ : {\r\n \"enabled\": true,\r\n \"gracePeriod\": \"PT30M\",\r\n \ \ \"repairAction\": \"Replace\"\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3646' + - '3785' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:52:47 GMT + - Tue, 02 Feb 2021 10:57:02 GMT expires: - '-1' pragma: @@ -1648,7 +1653,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2591 + - Microsoft.Compute/GetVMScaleSet3Min;399,Microsoft.Compute/GetVMScaleSet30Min;2593 status: code: 200 message: OK @@ -1666,7 +1671,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetd7d31356/setOrchestrationServiceState?api-version=2020-06-01 response: @@ -1674,17 +1679,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:52:48 GMT + - Tue, 02 Feb 2021 10:57:02 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1695,7 +1700,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4800 + - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1193,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1717,7 +1722,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetd7d31356/reimage?api-version=2020-06-01 response: @@ -1725,17 +1730,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 05:52:48 GMT + - Tue, 02 Feb 2021 10:57:03 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1746,7 +1751,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4798 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1192,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - '1198' x-ms-request-charge: @@ -1764,23 +1769,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:53:18 GMT + - Tue, 02 Feb 2021 10:57:32 GMT expires: - '-1' pragma: @@ -1797,7 +1802,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29955 + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29875 status: code: 200 message: OK @@ -1811,13 +1816,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -1827,7 +1832,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:53:18 GMT + - Tue, 02 Feb 2021 10:57:33 GMT expires: - '-1' pragma: @@ -1844,7 +1849,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29954 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29874 status: code: 200 message: OK @@ -1858,23 +1863,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:53:48 GMT + - Tue, 02 Feb 2021 10:58:02 GMT expires: - '-1' pragma: @@ -1891,7 +1896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29949 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29869 status: code: 200 message: OK @@ -1905,13 +1910,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -1921,7 +1926,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:53:49 GMT + - Tue, 02 Feb 2021 10:58:03 GMT expires: - '-1' pragma: @@ -1938,7 +1943,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29948 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29868 status: code: 200 message: OK @@ -1952,23 +1957,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:54:18 GMT + - Tue, 02 Feb 2021 10:58:33 GMT expires: - '-1' pragma: @@ -1985,7 +1990,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29943 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29863 status: code: 200 message: OK @@ -1999,13 +2004,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2015,7 +2020,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:54:19 GMT + - Tue, 02 Feb 2021 10:58:33 GMT expires: - '-1' pragma: @@ -2032,7 +2037,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29942 + - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29862 status: code: 200 message: OK @@ -2046,23 +2051,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:54:49 GMT + - Tue, 02 Feb 2021 10:59:04 GMT expires: - '-1' pragma: @@ -2079,7 +2084,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29937 + - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29857 status: code: 200 message: OK @@ -2093,13 +2098,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2109,7 +2114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:54:49 GMT + - Tue, 02 Feb 2021 10:59:04 GMT expires: - '-1' pragma: @@ -2126,7 +2131,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29936 + - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -2140,23 +2145,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:55:20 GMT + - Tue, 02 Feb 2021 10:59:35 GMT expires: - '-1' pragma: @@ -2173,7 +2178,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29953 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29851 status: code: 200 message: OK @@ -2187,13 +2192,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2203,7 +2208,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:55:20 GMT + - Tue, 02 Feb 2021 10:59:35 GMT expires: - '-1' pragma: @@ -2220,7 +2225,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29952 + - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29850 status: code: 200 message: OK @@ -2234,23 +2239,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:55:51 GMT + - Tue, 02 Feb 2021 11:00:05 GMT expires: - '-1' pragma: @@ -2267,7 +2272,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29947 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29873 status: code: 200 message: OK @@ -2281,13 +2286,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2297,7 +2302,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:55:51 GMT + - Tue, 02 Feb 2021 11:00:05 GMT expires: - '-1' pragma: @@ -2314,7 +2319,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29946 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29872 status: code: 200 message: OK @@ -2328,23 +2333,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:56:21 GMT + - Tue, 02 Feb 2021 11:00:35 GMT expires: - '-1' pragma: @@ -2361,7 +2366,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29941 + - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29868 status: code: 200 message: OK @@ -2375,13 +2380,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2391,7 +2396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:56:21 GMT + - Tue, 02 Feb 2021 11:00:35 GMT expires: - '-1' pragma: @@ -2408,7 +2413,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29940 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29867 status: code: 200 message: OK @@ -2422,23 +2427,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:56:51 GMT + - Tue, 02 Feb 2021 11:01:05 GMT expires: - '-1' pragma: @@ -2455,7 +2460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29937 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29863 status: code: 200 message: OK @@ -2469,13 +2474,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2485,7 +2490,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:56:51 GMT + - Tue, 02 Feb 2021 11:01:05 GMT expires: - '-1' pragma: @@ -2502,7 +2507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29936 + - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29862 status: code: 200 message: OK @@ -2516,23 +2521,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:57:21 GMT + - Tue, 02 Feb 2021 11:01:36 GMT expires: - '-1' pragma: @@ -2549,7 +2554,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29931 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29857 status: code: 200 message: OK @@ -2563,13 +2568,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2579,7 +2584,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:57:21 GMT + - Tue, 02 Feb 2021 11:01:36 GMT expires: - '-1' pragma: @@ -2596,7 +2601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29930 + - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -2610,23 +2615,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:57:52 GMT + - Tue, 02 Feb 2021 11:02:06 GMT expires: - '-1' pragma: @@ -2643,7 +2648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29925 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29851 status: code: 200 message: OK @@ -2657,13 +2662,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2673,7 +2678,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:57:53 GMT + - Tue, 02 Feb 2021 11:02:07 GMT expires: - '-1' pragma: @@ -2690,7 +2695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29924 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29850 status: code: 200 message: OK @@ -2704,23 +2709,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:58:23 GMT + - Tue, 02 Feb 2021 11:02:36 GMT expires: - '-1' pragma: @@ -2737,7 +2742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29919 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -2751,13 +2756,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2767,7 +2772,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:58:23 GMT + - Tue, 02 Feb 2021 11:02:37 GMT expires: - '-1' pragma: @@ -2784,7 +2789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29918 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29844 status: code: 200 message: OK @@ -2798,23 +2803,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:58:53 GMT + - Tue, 02 Feb 2021 11:03:07 GMT expires: - '-1' pragma: @@ -2831,7 +2836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29913 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29839 status: code: 200 message: OK @@ -2845,13 +2850,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2861,7 +2866,54 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:58:53 GMT + - Tue, 02 Feb 2021 11:03:07 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29838 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:03:37 GMT expires: - '-1' pragma: @@ -2878,7 +2930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29912 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29833 status: code: 200 message: OK @@ -2892,13 +2944,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2908,7 +2960,54 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:59:23 GMT + - Tue, 02 Feb 2021 11:03:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29832 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:04:08 GMT expires: - '-1' pragma: @@ -2925,7 +3024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29908 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29827 status: code: 200 message: OK @@ -2939,13 +3038,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -2955,7 +3054,54 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:59:23 GMT + - Tue, 02 Feb 2021 11:04:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29826 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:04:38 GMT expires: - '-1' pragma: @@ -2972,7 +3118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29907 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29821 status: code: 200 message: OK @@ -2986,13 +3132,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -3002,7 +3148,54 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:59:53 GMT + - Tue, 02 Feb 2021 11:04:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29820 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:05:08 GMT expires: - '-1' pragma: @@ -3019,7 +3212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29902 + - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29845 status: code: 200 message: OK @@ -3033,13 +3226,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\ + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\ \r\n}" headers: cache-control: @@ -3049,7 +3242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 05:59:53 GMT + - Tue, 02 Feb 2021 11:05:08 GMT expires: - '-1' pragma: @@ -3066,7 +3259,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29901 + - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29844 status: code: 200 message: OK @@ -3080,23 +3273,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.1834254+00:00\",\r\n \"\ - endTime\": \"2021-01-20T06:00:07.2307493+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"da15524a-c1c3-4f6a-9929-4bfa9a54ccc0\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:57:02.643119+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:05:22.9250796+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"bd20f604-1a47-4c02-b3a5-b479931b8d01\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:00:24 GMT + - Tue, 02 Feb 2021 11:05:39 GMT expires: - '-1' pragma: @@ -3113,7 +3306,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29897 + - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29839 status: code: 200 message: OK @@ -3127,14 +3320,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T05:52:48.6518979+00:00\",\r\n \"\ - endTime\": \"2021-01-20T06:00:07.2307493+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"67dc89f9-0078-487d-8b3a-4dd425658cc7\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T10:57:03.1118655+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:05:22.9250796+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"d461d0e9-65bb-41d7-a7dc-2775398954e2\"\r\n}" headers: cache-control: - no-cache @@ -3143,7 +3336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:00:23 GMT + - Tue, 02 Feb 2021 11:05:38 GMT expires: - '-1' pragma: @@ -3160,7 +3353,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29896 + - Microsoft.Compute/GetOperation3Min;14968,Microsoft.Compute/GetOperation30Min;29838 status: code: 200 message: OK @@ -3174,9 +3367,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/da15524a-c1c3-4f6a-9929-4bfa9a54ccc0?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bd20f604-1a47-4c02-b3a5-b479931b8d01?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -3186,7 +3379,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 06:00:24 GMT + - Tue, 02 Feb 2021 11:05:39 GMT expires: - '-1' pragma: @@ -3199,7 +3392,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29895 + - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29837 status: code: 200 message: OK @@ -3213,9 +3406,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/67dc89f9-0078-487d-8b3a-4dd425658cc7?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d461d0e9-65bb-41d7-a7dc-2775398954e2?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -3225,7 +3418,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 06:00:24 GMT + - Tue, 02 Feb 2021 11:05:39 GMT expires: - '-1' pragma: @@ -3238,7 +3431,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29894 + - Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29836 status: code: 200 message: OK @@ -3256,7 +3449,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetd7d31356/reimageall?api-version=2020-06-01 response: @@ -3264,17 +3457,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 06:00:24 GMT + - Tue, 02 Feb 2021 11:05:39 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -3285,7 +3478,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1190,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4798 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1183,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - '1197' x-ms-request-charge: @@ -3303,23 +3496,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:00:55 GMT + - Tue, 02 Feb 2021 11:06:11 GMT expires: - '-1' pragma: @@ -3336,7 +3529,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29892 + - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29834 status: code: 200 message: OK @@ -3350,23 +3543,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:01:26 GMT + - Tue, 02 Feb 2021 11:06:41 GMT expires: - '-1' pragma: @@ -3383,7 +3576,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29889 + - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29831 status: code: 200 message: OK @@ -3397,23 +3590,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:01:56 GMT + - Tue, 02 Feb 2021 11:07:11 GMT expires: - '-1' pragma: @@ -3430,7 +3623,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29886 + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29828 status: code: 200 message: OK @@ -3444,23 +3637,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:02:27 GMT + - Tue, 02 Feb 2021 11:07:41 GMT expires: - '-1' pragma: @@ -3477,7 +3670,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29883 + - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29825 status: code: 200 message: OK @@ -3491,23 +3684,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:02:57 GMT + - Tue, 02 Feb 2021 11:08:11 GMT expires: - '-1' pragma: @@ -3524,7 +3717,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29880 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29822 status: code: 200 message: OK @@ -3538,23 +3731,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:03:27 GMT + - Tue, 02 Feb 2021 11:08:42 GMT expires: - '-1' pragma: @@ -3571,7 +3764,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29877 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29820 status: code: 200 message: OK @@ -3585,23 +3778,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:03:57 GMT + - Tue, 02 Feb 2021 11:09:13 GMT expires: - '-1' pragma: @@ -3618,7 +3811,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29874 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29817 status: code: 200 message: OK @@ -3632,23 +3825,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:04:28 GMT + - Tue, 02 Feb 2021 11:09:43 GMT expires: - '-1' pragma: @@ -3665,7 +3858,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29872 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29814 status: code: 200 message: OK @@ -3679,23 +3872,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:04:58 GMT + - Tue, 02 Feb 2021 11:10:13 GMT expires: - '-1' pragma: @@ -3712,7 +3905,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29869 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29842 status: code: 200 message: OK @@ -3726,23 +3919,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:05:29 GMT + - Tue, 02 Feb 2021 11:10:44 GMT expires: - '-1' pragma: @@ -3759,7 +3952,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29866 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29839 status: code: 200 message: OK @@ -3773,23 +3966,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:05:59 GMT + - Tue, 02 Feb 2021 11:11:14 GMT expires: - '-1' pragma: @@ -3806,7 +3999,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29863 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29836 status: code: 200 message: OK @@ -3820,23 +4013,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:06:30 GMT + - Tue, 02 Feb 2021 11:11:44 GMT expires: - '-1' pragma: @@ -3853,7 +4046,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29860 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29834 status: code: 200 message: OK @@ -3867,23 +4060,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:07:00 GMT + - Tue, 02 Feb 2021 11:12:14 GMT expires: - '-1' pragma: @@ -3900,7 +4093,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29857 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29831 status: code: 200 message: OK @@ -3914,23 +4107,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:07:30 GMT + - Tue, 02 Feb 2021 11:12:45 GMT expires: - '-1' pragma: @@ -3947,7 +4140,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29855 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29828 status: code: 200 message: OK @@ -3961,23 +4154,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:08:01 GMT + - Tue, 02 Feb 2021 11:13:16 GMT expires: - '-1' pragma: @@ -3994,7 +4187,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29852 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29825 status: code: 200 message: OK @@ -4008,23 +4201,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:08:31 GMT + - Tue, 02 Feb 2021 11:13:46 GMT expires: - '-1' pragma: @@ -4041,7 +4234,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29849 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29822 status: code: 200 message: OK @@ -4055,23 +4248,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:00:25.3557232+00:00\",\r\n \"\ - endTime\": \"2021-01-20T06:08:33.8238979+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"ff4f3103-e790-461e-a530-7592d72df4a6\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:05:40.393853+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:14:02.8963554+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:09:03 GMT + - Tue, 02 Feb 2021 11:14:16 GMT expires: - '-1' pragma: @@ -4088,7 +4281,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29847 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29819 status: code: 200 message: OK @@ -4102,9 +4295,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ff4f3103-e790-461e-a530-7592d72df4a6?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d5c4c0cb-8464-4852-9eb4-dc09ff34e6f5?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -4114,7 +4307,7 @@ interactions: content-length: - '0' date: - - Wed, 20 Jan 2021 06:09:03 GMT + - Tue, 02 Feb 2021 11:14:16 GMT expires: - '-1' pragma: @@ -4127,7 +4320,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29846 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29818 status: code: 200 message: OK @@ -4143,7 +4336,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetd7d31356?api-version=2020-06-01 response: @@ -4153,17 +4346,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed765787-ad41-43e5-8097-e0915af64b17?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9033bed-c782-49c2-9e70-bceb08ad2e9d?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Wed, 20 Jan 2021 06:09:04 GMT + - Tue, 02 Feb 2021 11:14:17 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed765787-ad41-43e5-8097-e0915af64b17?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9033bed-c782-49c2-9e70-bceb08ad2e9d?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -4174,7 +4367,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4798 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;397,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-deletes: - '14999' x-ms-request-charge: @@ -4192,70 +4385,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed765787-ad41-43e5-8097-e0915af64b17?api-version=2020-06-01 - response: - body: - string: "{\r\n \"startTime\": \"2021-01-20T06:09:03.9494008+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ed765787-ad41-43e5-8097-e0915af64b17\"\ - \r\n}" - headers: - cache-control: - - no-cache - content-length: - - '134' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 20 Jan 2021 06:09:14 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29845 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed765787-ad41-43e5-8097-e0915af64b17?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9033bed-c782-49c2-9e70-bceb08ad2e9d?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:09:03.9494008+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ed765787-ad41-43e5-8097-e0915af64b17\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:14:17.958875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d9033bed-c782-49c2-9e70-bceb08ad2e9d\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:09:25 GMT + - Tue, 02 Feb 2021 11:14:27 GMT expires: - '-1' pragma: @@ -4272,7 +4418,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29844 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29817 status: code: 200 message: OK @@ -4286,23 +4432,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed765787-ad41-43e5-8097-e0915af64b17?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9033bed-c782-49c2-9e70-bceb08ad2e9d?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:09:03.9494008+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ed765787-ad41-43e5-8097-e0915af64b17\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:14:17.958875+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d9033bed-c782-49c2-9e70-bceb08ad2e9d\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:09:55 GMT + - Tue, 02 Feb 2021 11:14:39 GMT expires: - '-1' pragma: @@ -4319,7 +4465,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29843 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29816 status: code: 200 message: OK @@ -4333,14 +4479,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ed765787-ad41-43e5-8097-e0915af64b17?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d9033bed-c782-49c2-9e70-bceb08ad2e9d?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-20T06:09:03.9494008+00:00\",\r\n \"\ - endTime\": \"2021-01-20T06:09:56.340127+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"ed765787-ad41-43e5-8097-e0915af64b17\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:14:17.958875+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:14:54.6151535+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"d9033bed-c782-49c2-9e70-bceb08ad2e9d\"\r\n}" headers: cache-control: - no-cache @@ -4349,7 +4495,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 20 Jan 2021 06:10:26 GMT + - Tue, 02 Feb 2021 11:15:10 GMT expires: - '-1' pragma: @@ -4366,7 +4512,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29842 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29830 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_perform_maintenance.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_perform_maintenance.yaml index a85f3ba8aace..a3b0ceca26b5 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_perform_maintenance.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_perform_maintenance.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexfe411907\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907\"\ - ,\r\n \"etag\": \"W/\\\"a1e8087b-e743-4917-a97b-ee0ef2767cc5\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"8124c4d6-7662-4153-b260-102318672b37\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"4e2c1c29-31d1-4c43-9241-e4db9c97ccfa\",\r\n \"\ + \ \"resourceGuid\": \"56670fc5-7d0c-4cec-80b3-f9f3de464a1c\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e66b3833-9f6b-48b6-8e0a-d769d2961a5c?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/da7df3d7-6e0a-4bdb-96f3-d77a89aed05c?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:00:29 GMT + - Tue, 02 Feb 2021 11:15:28 GMT expires: - '-1' pragma: @@ -53,7 +53,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b558577-8b70-4f98-9326-b59c06144a7f + - 1deeb3cb-c152-4e39-9a9f-8ea5a4761a96 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e66b3833-9f6b-48b6-8e0a-d769d2961a5c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/da7df3d7-6e0a-4bdb-96f3-d77a89aed05c?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:00:33 GMT + - Tue, 02 Feb 2021 11:15:32 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de6bb8b4-6f38-46d9-9f87-45f53288738a + - 6d2d6d8a-5385-45c4-a37a-7914425503ed status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexfe411907\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907\"\ - ,\r\n \"etag\": \"W/\\\"e90a18bb-f347-4ebf-a5cd-aaf01cb1ce1d\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"f4066116-2943-4cc2-9ff3-365b9e43ba86\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"4e2c1c29-31d1-4c43-9241-e4db9c97ccfa\",\r\n \"\ + \ \"resourceGuid\": \"56670fc5-7d0c-4cec-80b3-f9f3de464a1c\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:00:33 GMT + - Tue, 02 Feb 2021 11:15:32 GMT etag: - - W/"e90a18bb-f347-4ebf-a5cd-aaf01cb1ce1d" + - W/"f4066116-2943-4cc2-9ff3-365b9e43ba86" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 153d5f83-b0a8-42fa-a106-c9dae1fdcce3 + - d826e572-d773-4f48-808e-4d8606208b59 status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamexfe411907\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907\"\ - ,\r\n \"etag\": \"W/\\\"13e3649f-5153-4e78-8f95-d275f57ca673\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"a5d9fad9-57fd-4600-9eaa-d2a0b0af2494\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/50c870b1-dd57-40cd-86ab-c2cca5752b01?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0e12ff38-4944-4d78-ba6b-c11249e3b87c?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:00:34 GMT + - Tue, 02 Feb 2021 11:15:33 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 52588b09-7976-4cf0-a936-b1584b2618c9 + - 4c5feff8-3ea9-4f9c-84c8-d92f12261f87 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/50c870b1-dd57-40cd-86ab-c2cca5752b01?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/0e12ff38-4944-4d78-ba6b-c11249e3b87c?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:00:37 GMT + - Tue, 02 Feb 2021 11:15:36 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d9b9bc9-3293-4b18-adc1-552d818c283a + - df9dede1-115e-4209-9c58-f4e9d4b87d6e status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamexfe411907\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907\"\ - ,\r\n \"etag\": \"W/\\\"06537f0f-eea7-44bc-bff7-ebcf8371c671\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"039581c5-2848-465a-aa43-ffcfb77b7e58\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:00:38 GMT + - Tue, 02 Feb 2021 11:15:36 GMT etag: - - W/"06537f0f-eea7-44bc-bff7-ebcf8371c671" + - W/"039581c5-2848-465a-aa43-ffcfb77b7e58" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 69de9e9b-f5e3-4257-b322-0e443ec5eea2 + - cdeee10c-8f50-42f2-8e81-3a548a8b2c47 status: code: 200 message: OK @@ -334,7 +334,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907?api-version=2020-06-01 response: @@ -342,8 +342,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescalesetfe411907\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -351,17 +352,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -377,20 +379,20 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"0cf36cfd-327e-4dcb-92ca-a19adda3d68f\"\r\n }\r\n}" + : \"0886a61f-0281-43de-928e-2b5f00a8a672\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2992' + - '3131' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:00:47 GMT + - Tue, 02 Feb 2021 11:15:46 GMT expires: - '-1' pragma: @@ -403,9 +405,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4798 + - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '2' status: @@ -421,13 +423,60 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:15:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29829 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -437,7 +486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:00:57 GMT + - Tue, 02 Feb 2021 11:17:34 GMT expires: - '-1' pragma: @@ -454,7 +503,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29932 + - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29828 status: code: 200 message: OK @@ -468,13 +517,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -484,7 +533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:02:35 GMT + - Tue, 02 Feb 2021 11:18:04 GMT expires: - '-1' pragma: @@ -501,7 +550,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29931 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29826 status: code: 200 message: OK @@ -515,13 +564,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -531,7 +580,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:03:05 GMT + - Tue, 02 Feb 2021 11:18:34 GMT expires: - '-1' pragma: @@ -548,7 +597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29929 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29825 status: code: 200 message: OK @@ -562,13 +611,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -578,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:03:35 GMT + - Tue, 02 Feb 2021 11:19:04 GMT expires: - '-1' pragma: @@ -595,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29928 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29824 status: code: 200 message: OK @@ -609,13 +658,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -625,7 +674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:04:06 GMT + - Tue, 02 Feb 2021 11:19:36 GMT expires: - '-1' pragma: @@ -642,7 +691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29927 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29823 status: code: 200 message: OK @@ -656,13 +705,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -672,7 +721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:04:37 GMT + - Tue, 02 Feb 2021 11:20:06 GMT expires: - '-1' pragma: @@ -689,7 +738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29926 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29833 status: code: 200 message: OK @@ -703,13 +752,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -719,7 +768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:05:07 GMT + - Tue, 02 Feb 2021 11:20:36 GMT expires: - '-1' pragma: @@ -736,7 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29925 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29832 status: code: 200 message: OK @@ -750,13 +799,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -766,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:05:37 GMT + - Tue, 02 Feb 2021 11:21:06 GMT expires: - '-1' pragma: @@ -783,7 +832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29924 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29831 status: code: 200 message: OK @@ -797,13 +846,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -813,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:06:07 GMT + - Tue, 02 Feb 2021 11:21:37 GMT expires: - '-1' pragma: @@ -830,7 +879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29923 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29830 status: code: 200 message: OK @@ -844,13 +893,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -860,7 +909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:06:37 GMT + - Tue, 02 Feb 2021 11:22:07 GMT expires: - '-1' pragma: @@ -877,7 +926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29922 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29828 status: code: 200 message: OK @@ -891,13 +940,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -907,7 +956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:07:09 GMT + - Tue, 02 Feb 2021 11:22:37 GMT expires: - '-1' pragma: @@ -924,7 +973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29920 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29827 status: code: 200 message: OK @@ -938,13 +987,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -954,7 +1003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:07:39 GMT + - Tue, 02 Feb 2021 11:23:08 GMT expires: - '-1' pragma: @@ -971,7 +1020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29919 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29826 status: code: 200 message: OK @@ -985,13 +1034,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -1001,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:08:09 GMT + - Tue, 02 Feb 2021 11:23:38 GMT expires: - '-1' pragma: @@ -1018,7 +1067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29918 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29825 status: code: 200 message: OK @@ -1032,13 +1081,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\ \r\n}" headers: cache-control: @@ -1048,7 +1097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:08:39 GMT + - Tue, 02 Feb 2021 11:24:09 GMT expires: - '-1' pragma: @@ -1065,7 +1114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29917 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29823 status: code: 200 message: OK @@ -1079,14 +1128,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/4b1467ad-1f87-4968-8ddb-f10cb3cc8901?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/16b8095d-f5b5-490e-ace1-a09b25237dd7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:00:45.5050417+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:08:43.4264826+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"4b1467ad-1f87-4968-8ddb-f10cb3cc8901\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:15:44.6933531+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:24:27.7878914+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"16b8095d-f5b5-490e-ace1-a09b25237dd7\"\r\n}" headers: cache-control: - no-cache @@ -1095,7 +1144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:09:09 GMT + - Tue, 02 Feb 2021 11:24:39 GMT expires: - '-1' pragma: @@ -1112,7 +1161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29915 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29821 status: code: 200 message: OK @@ -1126,7 +1175,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907?api-version=2020-06-01 response: @@ -1134,8 +1183,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescalesetfe411907\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -1143,17 +1193,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexfe411907/subnets/subnetnamexfe411907\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -1169,16 +1220,16 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"0cf36cfd-327e-4dcb-92ca-a19adda3d68f\"\r\n }\r\n}" + : \"0886a61f-0281-43de-928e-2b5f00a8a672\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2993' + - '3132' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:09:10 GMT + - Tue, 02 Feb 2021 11:24:39 GMT expires: - '-1' pragma: @@ -1195,7 +1246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2598 + - Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2584 status: code: 200 message: OK @@ -1209,37 +1260,81 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907/virtualmachines/0/instanceView?api-version=2020-06-01 response: body: - string: "{\r\n \"placementGroupId\": \"711c518f-3363-46da-a668-334a1598a574\"\ - ,\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \ - \ \"computerName\": \"testPC000000\",\r\n \"osName\": \"Windows Server 2016\ + string: "{\r\n \"error\": {\r\n \"code\": \"NotFound\",\r\n \"message\"\ + : \"The entity was not found in this Azure location.\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '115' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:27:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSetVM3Min;999,Microsoft.Compute/GetVMScaleSetVM30Min;4999,Microsoft.Compute/VMScaleSetVMViews3Min;4999 + x-ms-request-charge: + - '1' + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907/virtualmachines/1/instanceView?api-version=2020-06-01 + response: + body: + string: "{\r\n \"placementGroupId\": \"5a81e77b-28fe-47e6-a1fd-79efa0bcd5c6\"\ + ,\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \ + \ \"computerName\": \"testPC000001\",\r\n \"osName\": \"Windows Server 2016\ \ Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 10.0.14393.0\"\ - ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1005\",\r\n \ + ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"GuestAgent is running and processing the extensions.\"\ - ,\r\n \"time\": \"2021-01-19T09:12:02+00:00\"\r\n }\r\n ],\r\ + ,\r\n \"time\": \"2021-02-02T11:27:28+00:00\"\r\n }\r\n ],\r\ \n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Geneva.GenevaMonitoring\"\ ,\r\n \"typeHandlerVersion\": \"2.22.0.1\",\r\n \"status\":\ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"\ level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \ \"message\": \"ExtensionOperation:enable. Status:Success\"\r\n }\r\ \n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ - ,\r\n \"typeHandlerVersion\": \"2.58.1\",\r\n \"status\": {\r\ + ,\r\n \"typeHandlerVersion\": \"2.58.4\",\r\n \"status\": {\r\ \n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ : \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n \ - \ }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_6045a2c225774e438ae820929866852b\"\ + \ }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_28abe863adc84941a5176456badd9c84\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T09:08:44.1140346+00:00\"\ - \r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\ - \n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T11:16:23.94346+00:00\"\r\ + \n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\n\ + \ \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ ,\r\n \"type\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ - ,\r\n \"typeHandlerVersion\": \"2.58.1\",\r\n \"statuses\": [\r\n\ + ,\r\n \"typeHandlerVersion\": \"2.58.4\",\r\n \"statuses\": [\r\n\ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ \ succeeded\",\r\n \"message\": \"Enable AntimalwareSignature extension\ @@ -1249,22 +1344,22 @@ interactions: \n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ \ succeeded\",\r\n \"message\": \"ExtensionOperation:enable. Status:Success\"\ - ,\r\n \"time\": \"2021-01-19T09:11:38+00:00\"\r\n }\r\n \ + ,\r\n \"time\": \"2021-02-02T11:27:24+00:00\"\r\n }\r\n \ \ ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ - ,\r\n \"time\": \"2021-01-19T09:09:32.2706689+00:00\"\r\n },\r\n \ + ,\r\n \"time\": \"2021-02-02T11:24:27.7253854+00:00\"\r\n },\r\n \ \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache content-length: - - '2966' + - '2964' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:12:11 GMT + - Tue, 02 Feb 2021 11:27:40 GMT expires: - '-1' pragma: @@ -1281,7 +1376,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSetVM3Min;999,Microsoft.Compute/GetVMScaleSetVM30Min;4999,Microsoft.Compute/VMScaleSetVMViews3Min;4999 + - Microsoft.Compute/GetVMScaleSetVM3Min;998,Microsoft.Compute/GetVMScaleSetVM30Min;4998,Microsoft.Compute/VMScaleSetVMViews3Min;4998 x-ms-request-charge: - '1' status: @@ -1301,13 +1396,13 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907/performMaintenance?api-version=2020-06-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"OperationNotAllowed\",\r\n \ - \ \"message\": \"Operation 'performMaintenance' is not allowed on VM 'virtualmachinescalesetfe411907_0'\ + \ \"message\": \"Operation 'performMaintenance' is not allowed on VM 'virtualmachinescalesetfe411907_1'\ \ since the Subscription of this VM is not eligible.\"\r\n }\r\n}" headers: cache-control: @@ -1317,7 +1412,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:12:11 GMT + - Tue, 02 Feb 2021 11:27:41 GMT expires: - '-1' pragma: @@ -1330,7 +1425,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199 + - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1184 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -1348,13 +1443,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907/virtualmachines/0/performMaintenance?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907/virtualmachines/1/performMaintenance?api-version=2020-06-01 response: body: string: "{\r\n \"error\": {\r\n \"code\": \"OperationNotAllowed\",\r\n \ - \ \"message\": \"Operation 'performMaintenance' is not allowed on VM 'virtualmachinescalesetfe411907_0'\ + \ \"message\": \"Operation 'performMaintenance' is not allowed on VM 'virtualmachinescalesetfe411907_1'\ \ since the Subscription of this VM is not eligible.\"\r\n }\r\n}" headers: cache-control: @@ -1364,7 +1459,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:12:12 GMT + - Tue, 02 Feb 2021 11:27:41 GMT expires: - '-1' pragma: @@ -1377,7 +1472,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1183 x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1395,7 +1490,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetfe411907?api-version=2020-06-01 response: @@ -1405,17 +1500,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ef6e8c87-1b31-457b-bc5c-240d614185e5?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dc5f1688-6e81-4446-bc52-99bec4ebd954?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:12:13 GMT + - Tue, 02 Feb 2021 11:27:42 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ef6e8c87-1b31-457b-bc5c-240d614185e5?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dc5f1688-6e81-4446-bc52-99bec4ebd954?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1426,9 +1521,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;398,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-deletes: - - '14997' + - '14999' x-ms-request-charge: - '1' status: @@ -1444,23 +1539,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ef6e8c87-1b31-457b-bc5c-240d614185e5?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dc5f1688-6e81-4446-bc52-99bec4ebd954?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:12:13.3800921+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ef6e8c87-1b31-457b-bc5c-240d614185e5\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:27:42.742359+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"dc5f1688-6e81-4446-bc52-99bec4ebd954\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:12:23 GMT + - Tue, 02 Feb 2021 11:27:53 GMT expires: - '-1' pragma: @@ -1477,7 +1572,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29935 + - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29857 status: code: 200 message: OK @@ -1491,23 +1586,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ef6e8c87-1b31-457b-bc5c-240d614185e5?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dc5f1688-6e81-4446-bc52-99bec4ebd954?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:12:13.3800921+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"ef6e8c87-1b31-457b-bc5c-240d614185e5\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:27:42.742359+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"dc5f1688-6e81-4446-bc52-99bec4ebd954\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:12:34 GMT + - Tue, 02 Feb 2021 11:28:04 GMT expires: - '-1' pragma: @@ -1524,7 +1619,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29934 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29856 status: code: 200 message: OK @@ -1538,23 +1633,70 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/ef6e8c87-1b31-457b-bc5c-240d614185e5?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dc5f1688-6e81-4446-bc52-99bec4ebd954?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:12:13.3800921+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:12:49.6614948+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"ef6e8c87-1b31-457b-bc5c-240d614185e5\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:27:42.742359+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"dc5f1688-6e81-4446-bc52-99bec4ebd954\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:28:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29855 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/dc5f1688-6e81-4446-bc52-99bec4ebd954?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:27:42.742359+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:28:40.1174466+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"dc5f1688-6e81-4446-bc52-99bec4ebd954\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:04 GMT + - Tue, 02 Feb 2021 11:29:05 GMT expires: - '-1' pragma: @@ -1571,7 +1713,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29932 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29853 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_rolling_upgrades.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_rolling_upgrades.yaml index d00805dd3a0d..4e969af9b8bf 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_rolling_upgrades.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_rolling_upgrades.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexb4bb17db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db\"\ - ,\r\n \"etag\": \"W/\\\"c7d543b9-6416-4dcc-9df1-bc591cc48ec8\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"1f663f5f-7a06-4f9e-b409-7b1249c7965d\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"75391430-5e37-4aaf-beff-31bdcdd0f16c\",\r\n \"\ + \ \"resourceGuid\": \"0e129e10-253a-42e3-8612-33ce71462624\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/af0427cf-44ff-446b-a952-5a4295456fc0?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2da6d81c-4099-4720-9eea-0d4d3dea92ba?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:19 GMT + - Tue, 02 Feb 2021 11:29:22 GMT expires: - '-1' pragma: @@ -53,9 +53,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 95baacec-5067-4382-b7c6-34255344495f + - 8feef043-c4a1-473a-950d-c38932dd5f4c x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/af0427cf-44ff-446b-a952-5a4295456fc0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2da6d81c-4099-4720-9eea-0d4d3dea92ba?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:23 GMT + - Tue, 02 Feb 2021 11:29:25 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 969005bc-3e05-4724-84a5-240e51107237 + - 513ee6c7-c554-417e-83e1-50544707bb15 status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexb4bb17db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db\"\ - ,\r\n \"etag\": \"W/\\\"372111fe-fa32-4c31-a715-85b31756eeff\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"16b149b5-e154-4448-8995-f43ab7850652\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"75391430-5e37-4aaf-beff-31bdcdd0f16c\",\r\n \"\ + \ \"resourceGuid\": \"0e129e10-253a-42e3-8612-33ce71462624\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:23 GMT + - Tue, 02 Feb 2021 11:29:26 GMT etag: - - W/"372111fe-fa32-4c31-a715-85b31756eeff" + - W/"16b149b5-e154-4448-8995-f43ab7850652" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d49cca78-127e-4d21-a375-58dfb8ebc326 + - fafea584-907a-48ca-853a-cb615ff2b5e9 status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamexb4bb17db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db\"\ - ,\r\n \"etag\": \"W/\\\"7ea2e5d6-580c-4bf2-ab43-b42877ee3a47\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"5842e15b-2646-4a23-968f-4164b9c15efb\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/db6bb939-d26f-4411-a4f5-85a0a4cace5c?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1133e7bd-8025-4e36-9f3c-41632998452f?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:24 GMT + - Tue, 02 Feb 2021 11:29:28 GMT expires: - '-1' pragma: @@ -207,9 +207,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57fcb6ca-34df-489d-bc60-463367d35a99 + - 0464d18c-8361-47d4-996a-b5b0c618d530 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/db6bb939-d26f-4411-a4f5-85a0a4cace5c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1133e7bd-8025-4e36-9f3c-41632998452f?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:27 GMT + - Tue, 02 Feb 2021 11:29:31 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4874ef34-02de-4846-9bea-baeba3f990e7 + - e0c68aa0-4db8-47df-9a3d-70b327a9b029 status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamexb4bb17db\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db\"\ - ,\r\n \"etag\": \"W/\\\"d1d5f7fc-e76b-4d96-a595-7b2d1245d732\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"5a7d63c7-c883-406d-b17d-754b4d85620a\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:27 GMT + - Tue, 02 Feb 2021 11:29:31 GMT etag: - - W/"d1d5f7fc-e76b-4d96-a595-7b2d1245d732" + - W/"5a7d63c7-c883-406d-b17d-754b4d85620a" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d0d2817d-2e6d-4352-850e-356173aa30b3 + - eafe5a3f-3a3b-4566-ba02-30291cf9a4a8 status: code: 200 message: OK @@ -335,7 +335,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db?api-version=2020-06-01 response: @@ -343,8 +343,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescalesetb4bb17db\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \ \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\"\ @@ -355,17 +356,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -381,20 +383,20 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"87109fb2-d08b-499d-b2fa-90d143f8d368\"\r\n }\r\n}" + : \"9cd7cabe-fbbf-4e75-bfa4-3516f214e2b8\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 cache-control: - no-cache content-length: - - '3216' + - '3355' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:36 GMT + - Tue, 02 Feb 2021 11:29:41 GMT expires: - '-1' pragma: @@ -409,7 +411,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1198' x-ms-request-charge: - '2' status: @@ -425,23 +427,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:13:46 GMT + - Tue, 02 Feb 2021 11:29:51 GMT expires: - '-1' pragma: @@ -458,7 +460,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29931 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29852 status: code: 200 message: OK @@ -472,23 +474,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:15:24 GMT + - Tue, 02 Feb 2021 11:31:28 GMT expires: - '-1' pragma: @@ -505,7 +507,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29955 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29909 status: code: 200 message: OK @@ -519,23 +521,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:15:54 GMT + - Tue, 02 Feb 2021 11:31:58 GMT expires: - '-1' pragma: @@ -552,7 +554,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29953 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29907 status: code: 200 message: OK @@ -566,23 +568,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:16:24 GMT + - Tue, 02 Feb 2021 11:32:29 GMT expires: - '-1' pragma: @@ -599,7 +601,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29952 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29906 status: code: 200 message: OK @@ -613,23 +615,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:16:55 GMT + - Tue, 02 Feb 2021 11:33:00 GMT expires: - '-1' pragma: @@ -646,7 +648,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29951 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29905 status: code: 200 message: OK @@ -660,23 +662,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:17:26 GMT + - Tue, 02 Feb 2021 11:33:30 GMT expires: - '-1' pragma: @@ -693,7 +695,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29950 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29904 status: code: 200 message: OK @@ -707,23 +709,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:17:56 GMT + - Tue, 02 Feb 2021 11:34:00 GMT expires: - '-1' pragma: @@ -740,7 +742,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29948 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29902 status: code: 200 message: OK @@ -754,23 +756,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:18:26 GMT + - Tue, 02 Feb 2021 11:34:31 GMT expires: - '-1' pragma: @@ -787,7 +789,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29947 + - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999 status: code: 200 message: OK @@ -801,23 +803,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:18:56 GMT + - Tue, 02 Feb 2021 11:35:01 GMT expires: - '-1' pragma: @@ -834,7 +836,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29946 + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998 status: code: 200 message: OK @@ -848,23 +850,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:19:26 GMT + - Tue, 02 Feb 2021 11:35:31 GMT expires: - '-1' pragma: @@ -881,7 +883,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29945 + - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997 status: code: 200 message: OK @@ -895,23 +897,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:19:57 GMT + - Tue, 02 Feb 2021 11:36:01 GMT expires: - '-1' pragma: @@ -928,7 +930,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29943 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 status: code: 200 message: OK @@ -942,23 +944,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:20:28 GMT + - Tue, 02 Feb 2021 11:36:32 GMT expires: - '-1' pragma: @@ -975,7 +977,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29953 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK @@ -989,23 +991,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:20:58 GMT + - Tue, 02 Feb 2021 11:37:02 GMT expires: - '-1' pragma: @@ -1022,7 +1024,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29952 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993 status: code: 200 message: OK @@ -1036,23 +1038,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '133' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:21:28 GMT + - Tue, 02 Feb 2021 11:37:33 GMT expires: - '-1' pragma: @@ -1069,7 +1071,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29951 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29992 status: code: 200 message: OK @@ -1083,23 +1085,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f6e3fe3e-ef78-4dff-9d88-95f6229428db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:13:35.083414+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:21:48.6771731+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"f6e3fe3e-ef78-4dff-9d88-95f6229428db\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '183' + - '134' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:21:58 GMT + - Tue, 02 Feb 2021 11:38:03 GMT expires: - '-1' pragma: @@ -1116,7 +1118,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29948 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990 status: code: 200 message: OK @@ -1130,7 +1132,54 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd7e24bc-9673-4d87-b82d-7c82cb906989?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:29:38.3363047+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:38:28.0261016+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"cd7e24bc-9673-4d87-b82d-7c82cb906989\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:38:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29988 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db?api-version=2020-06-01 response: @@ -1138,8 +1187,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescalesetb4bb17db\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \ \ \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\"\ @@ -1150,17 +1200,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb4bb17db/subnets/subnetnamexb4bb17db\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -1176,16 +1227,16 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"87109fb2-d08b-499d-b2fa-90d143f8d368\"\r\n }\r\n}" + : \"9cd7cabe-fbbf-4e75-bfa4-3516f214e2b8\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '3217' + - '3356' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:21:59 GMT + - Tue, 02 Feb 2021 11:38:34 GMT expires: - '-1' pragma: @@ -1202,7 +1253,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2591 + - Microsoft.Compute/GetVMScaleSet3Min;396,Microsoft.Compute/GetVMScaleSet30Min;2596 status: code: 200 message: OK @@ -1218,7 +1269,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db/extensionRollingUpgrade?api-version=2020-06-01 response: @@ -1226,17 +1277,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:21:59 GMT + - Tue, 02 Feb 2021 11:38:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1247,9 +1298,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4800 + - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' x-ms-request-charge: - '0' status: @@ -1265,13 +1316,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1281,7 +1332,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:22:29 GMT + - Tue, 02 Feb 2021 11:39:05 GMT expires: - '-1' pragma: @@ -1298,7 +1349,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29946 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29986 status: code: 200 message: OK @@ -1312,13 +1363,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1328,7 +1379,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:23:00 GMT + - Tue, 02 Feb 2021 11:39:35 GMT expires: - '-1' pragma: @@ -1345,7 +1396,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29943 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -1359,13 +1410,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1375,7 +1426,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:23:31 GMT + - Tue, 02 Feb 2021 11:40:40 GMT expires: - '-1' pragma: @@ -1392,7 +1443,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29940 + - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999 status: code: 200 message: OK @@ -1406,13 +1457,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1422,7 +1473,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:24:01 GMT + - Tue, 02 Feb 2021 11:41:11 GMT expires: - '-1' pragma: @@ -1439,7 +1490,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29937 + - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997 status: code: 200 message: OK @@ -1453,13 +1504,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1469,7 +1520,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:24:32 GMT + - Tue, 02 Feb 2021 11:41:41 GMT expires: - '-1' pragma: @@ -1486,7 +1537,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29934 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 status: code: 200 message: OK @@ -1500,13 +1551,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1516,7 +1567,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:25:02 GMT + - Tue, 02 Feb 2021 11:42:12 GMT expires: - '-1' pragma: @@ -1533,7 +1584,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29941 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991 status: code: 200 message: OK @@ -1547,13 +1598,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1563,7 +1614,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:25:32 GMT + - Tue, 02 Feb 2021 11:42:42 GMT expires: - '-1' pragma: @@ -1580,7 +1631,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29938 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989 status: code: 200 message: OK @@ -1594,13 +1645,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1610,7 +1661,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:26:03 GMT + - Tue, 02 Feb 2021 11:43:13 GMT expires: - '-1' pragma: @@ -1627,7 +1678,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29935 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986 status: code: 200 message: OK @@ -1641,13 +1692,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1657,7 +1708,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:26:34 GMT + - Tue, 02 Feb 2021 11:43:43 GMT expires: - '-1' pragma: @@ -1674,7 +1725,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29932 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -1688,13 +1739,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1704,7 +1755,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:27:04 GMT + - Tue, 02 Feb 2021 11:44:13 GMT expires: - '-1' pragma: @@ -1721,7 +1772,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29929 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29980 status: code: 200 message: OK @@ -1735,13 +1786,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1751,7 +1802,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:27:34 GMT + - Tue, 02 Feb 2021 11:44:43 GMT expires: - '-1' pragma: @@ -1768,7 +1819,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29926 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29977 status: code: 200 message: OK @@ -1782,13 +1833,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1798,7 +1849,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:28:04 GMT + - Tue, 02 Feb 2021 11:45:14 GMT expires: - '-1' pragma: @@ -1815,7 +1866,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29923 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29974 status: code: 200 message: OK @@ -1829,13 +1880,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1845,7 +1896,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:28:34 GMT + - Tue, 02 Feb 2021 11:45:44 GMT expires: - '-1' pragma: @@ -1862,7 +1913,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29920 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29971 status: code: 200 message: OK @@ -1876,13 +1927,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1892,7 +1943,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:29:06 GMT + - Tue, 02 Feb 2021 11:46:15 GMT expires: - '-1' pragma: @@ -1909,7 +1960,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29918 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29968 status: code: 200 message: OK @@ -1923,13 +1974,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1939,7 +1990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:29:36 GMT + - Tue, 02 Feb 2021 11:46:45 GMT expires: - '-1' pragma: @@ -1956,7 +2007,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29915 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29966 status: code: 200 message: OK @@ -1970,13 +2021,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -1986,7 +2037,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:30:06 GMT + - Tue, 02 Feb 2021 11:47:15 GMT expires: - '-1' pragma: @@ -2003,7 +2054,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29920 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29963 status: code: 200 message: OK @@ -2017,13 +2068,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -2033,7 +2084,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:30:36 GMT + - Tue, 02 Feb 2021 11:47:45 GMT expires: - '-1' pragma: @@ -2050,7 +2101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29917 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29960 status: code: 200 message: OK @@ -2064,13 +2115,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -2080,7 +2131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:31:07 GMT + - Tue, 02 Feb 2021 11:48:16 GMT expires: - '-1' pragma: @@ -2097,7 +2148,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29914 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29957 status: code: 200 message: OK @@ -2111,13 +2162,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -2127,7 +2178,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:31:37 GMT + - Tue, 02 Feb 2021 11:48:47 GMT expires: - '-1' pragma: @@ -2144,7 +2195,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29912 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29954 status: code: 200 message: OK @@ -2158,13 +2209,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ \r\n}" headers: cache-control: @@ -2174,7 +2225,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:32:08 GMT + - Tue, 02 Feb 2021 11:49:17 GMT expires: - '-1' pragma: @@ -2191,7 +2242,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29909 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29951 status: code: 200 message: OK @@ -2205,14 +2256,108 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:22:00.0990469+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:32:16.9892372+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"7213cb6d-7b0b-4f05-bef5-40351f2e6a73\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:49:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29948 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:50:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29946 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:38:35.1354749+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:50:43.5078172+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"e909cd72-c63c-40a1-b70c-0db6d3a5d447\"\r\n}" headers: cache-control: - no-cache @@ -2221,7 +2366,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:32:38 GMT + - Tue, 02 Feb 2021 11:50:48 GMT expires: - '-1' pragma: @@ -2238,7 +2383,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29906 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29943 status: code: 200 message: OK @@ -2252,9 +2397,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7213cb6d-7b0b-4f05-bef5-40351f2e6a73?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e909cd72-c63c-40a1-b70c-0db6d3a5d447?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2264,7 +2409,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:32:38 GMT + - Tue, 02 Feb 2021 11:50:49 GMT expires: - '-1' pragma: @@ -2277,7 +2422,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29905 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29942 status: code: 200 message: OK @@ -2293,7 +2438,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db/osRollingUpgrade?api-version=2020-06-01 response: @@ -2301,17 +2446,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0099d7be-1c6d-4aee-8770-f10441ad07d6?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bbdd2873-46ca-4bb5-b115-668e8d94e61b?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:32:39 GMT + - Tue, 02 Feb 2021 11:50:49 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0099d7be-1c6d-4aee-8770-f10441ad07d6?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bbdd2873-46ca-4bb5-b115-668e8d94e61b?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2322,9 +2467,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4800 + - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' x-ms-request-charge: - '0' status: @@ -2340,7 +2485,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db/rollingUpgrades/latest?api-version=2020-06-01 response: @@ -2350,8 +2495,8 @@ interactions: : {\r\n \"maxBatchInstancePercent\": 20,\r\n \"maxUnhealthyInstancePercent\"\ : 100,\r\n \"maxUnhealthyUpgradedInstancePercent\": 100,\r\n \"\ pauseTimeBetweenBatches\": \"PT0S\"\r\n },\r\n \"runningStatus\": {\r\ - \n \"lastAction\": \"Start\",\r\n \"lastActionTime\": \"2021-01-19T09:32:39.3645154+00:00\"\ - ,\r\n \"code\": \"RollingForward\",\r\n \"startTime\": \"2021-01-19T09:32:39.4113874+00:00\"\ + \n \"lastAction\": \"Start\",\r\n \"lastActionTime\": \"2021-02-02T11:50:49.445102+00:00\"\ + ,\r\n \"code\": \"RollingForward\",\r\n \"startTime\": \"2021-02-02T11:50:49.5076193+00:00\"\ \r\n },\r\n \"progress\": {\r\n \"successfulInstanceCount\": 0,\r\ \n \"failedInstanceCount\": 0,\r\n \"inProgressInstanceCount\":\ \ 1,\r\n \"pendingInstanceCount\": 0\r\n }\r\n }\r\n}" @@ -2359,11 +2504,11 @@ interactions: cache-control: - no-cache content-length: - - '702' + - '701' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:32:39 GMT + - Tue, 02 Feb 2021 11:50:49 GMT expires: - '-1' pragma: @@ -2380,7 +2525,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2583 + - Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2595 status: code: 200 message: OK @@ -2396,7 +2541,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db/rollingUpgrades/cancel?api-version=2020-06-01 response: @@ -2404,17 +2549,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/48910721-efca-4ffa-9cca-c7029d53dcec?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/434bd0ad-9806-43ab-b38a-3b01e3b86a6e?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:32:40 GMT + - Tue, 02 Feb 2021 11:50:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/48910721-efca-4ffa-9cca-c7029d53dcec?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/434bd0ad-9806-43ab-b38a-3b01e3b86a6e?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2425,9 +2570,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VmssQueuedVMOperations;4800 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-ms-request-charge: - '0' status: @@ -2443,23 +2588,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0099d7be-1c6d-4aee-8770-f10441ad07d6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bbdd2873-46ca-4bb5-b115-668e8d94e61b?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:32:39.3020368+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:32:40.2551865+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"0099d7be-1c6d-4aee-8770-f10441ad07d6\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:50:49.366998+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:50:50.3044504+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"bbdd2873-46ca-4bb5-b115-668e8d94e61b\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:33:09 GMT + - Tue, 02 Feb 2021 11:51:19 GMT expires: - '-1' pragma: @@ -2476,7 +2621,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29902 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29938 status: code: 200 message: OK @@ -2490,9 +2635,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/0099d7be-1c6d-4aee-8770-f10441ad07d6?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/bbdd2873-46ca-4bb5-b115-668e8d94e61b?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2502,7 +2647,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:33:09 GMT + - Tue, 02 Feb 2021 11:51:20 GMT expires: - '-1' pragma: @@ -2515,7 +2660,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29901 + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29937 status: code: 200 message: OK @@ -2529,14 +2674,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/48910721-efca-4ffa-9cca-c7029d53dcec?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/434bd0ad-9806-43ab-b38a-3b01e3b86a6e?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:32:40.1926481+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:32:40.2551865+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"48910721-efca-4ffa-9cca-c7029d53dcec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:50:50.2107029+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:50:50.3044504+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"434bd0ad-9806-43ab-b38a-3b01e3b86a6e\"\r\n}" headers: cache-control: - no-cache @@ -2545,7 +2690,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:33:10 GMT + - Tue, 02 Feb 2021 11:51:20 GMT expires: - '-1' pragma: @@ -2562,7 +2707,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29900 + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29936 status: code: 200 message: OK @@ -2576,9 +2721,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/48910721-efca-4ffa-9cca-c7029d53dcec?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/434bd0ad-9806-43ab-b38a-3b01e3b86a6e?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2588,7 +2733,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:33:10 GMT + - Tue, 02 Feb 2021 11:51:20 GMT expires: - '-1' pragma: @@ -2601,7 +2746,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29899 + - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29935 status: code: 200 message: OK @@ -2617,7 +2762,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb4bb17db?api-version=2020-06-01 response: @@ -2627,17 +2772,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d1aeef45-6187-4911-96cd-a1fdaafa1559?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/78673fde-72f1-411b-96fd-b4776922ba5c?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:33:11 GMT + - Tue, 02 Feb 2021 11:51:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d1aeef45-6187-4911-96cd-a1fdaafa1559?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/78673fde-72f1-411b-96fd-b4776922ba5c?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2648,9 +2793,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;398,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 + - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-deletes: - - '14992' + - '14999' x-ms-request-charge: - '1' status: @@ -2666,13 +2811,107 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/78673fde-72f1-411b-96fd-b4776922ba5c?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:51:21.5701174+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"78673fde-72f1-411b-96fd-b4776922ba5c\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:51:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29934 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/78673fde-72f1-411b-96fd-b4776922ba5c?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:51:21.5701174+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"78673fde-72f1-411b-96fd-b4776922ba5c\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:51:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29933 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d1aeef45-6187-4911-96cd-a1fdaafa1559?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/78673fde-72f1-411b-96fd-b4776922ba5c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:33:11.5522591+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"d1aeef45-6187-4911-96cd-a1fdaafa1559\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:51:21.5701174+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"78673fde-72f1-411b-96fd-b4776922ba5c\"\ \r\n}" headers: cache-control: @@ -2682,7 +2921,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:33:21 GMT + - Tue, 02 Feb 2021 11:52:13 GMT expires: - '-1' pragma: @@ -2699,7 +2938,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29898 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29932 status: code: 200 message: OK @@ -2713,13 +2952,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d1aeef45-6187-4911-96cd-a1fdaafa1559?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/78673fde-72f1-411b-96fd-b4776922ba5c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:33:11.5522591+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"d1aeef45-6187-4911-96cd-a1fdaafa1559\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:51:21.5701174+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"78673fde-72f1-411b-96fd-b4776922ba5c\"\ \r\n}" headers: cache-control: @@ -2729,7 +2968,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:33:32 GMT + - Tue, 02 Feb 2021 11:52:43 GMT expires: - '-1' pragma: @@ -2746,7 +2985,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29897 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29931 status: code: 200 message: OK @@ -2760,14 +2999,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d1aeef45-6187-4911-96cd-a1fdaafa1559?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/78673fde-72f1-411b-96fd-b4776922ba5c?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:33:11.5522591+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:33:35.1460189+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"d1aeef45-6187-4911-96cd-a1fdaafa1559\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:51:21.5701174+00:00\",\r\n \"\ + endTime\": \"2021-02-02T11:53:08.8827516+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"78673fde-72f1-411b-96fd-b4776922ba5c\"\r\n}" headers: cache-control: - no-cache @@ -2776,7 +3015,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:02 GMT + - Tue, 02 Feb 2021 11:53:14 GMT expires: - '-1' pragma: @@ -2793,7 +3032,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29895 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29930 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_vm.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_vm.yaml index affd6ea6b5b6..da1c8ba52c60 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_vm.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_vm.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamex8c68120d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d\"\ - ,\r\n \"etag\": \"W/\\\"e9b17e23-aae2-4b25-9f07-d0679bd9790b\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"afe8577d-21d4-4156-a8dc-df94c6f8eece\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"e655c189-fada-4e3d-8b40-450fbca299ae\",\r\n \"\ + \ \"resourceGuid\": \"6e98e7ce-820b-4ed9-b3c1-4f2cecc33aff\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/18162bad-16fd-44b9-8ee2-694c3f4ef059?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d8237b0-6731-4b1a-90c6-1b652f54b875?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:21 GMT + - Tue, 02 Feb 2021 11:53:32 GMT expires: - '-1' pragma: @@ -53,7 +53,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 95f38851-56f3-418c-8797-cbe558c6352f + - 4b2bfae7-6a88-4793-95a6-6ed94a42986c x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/18162bad-16fd-44b9-8ee2-694c3f4ef059?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/2d8237b0-6731-4b1a-90c6-1b652f54b875?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:24 GMT + - Tue, 02 Feb 2021 11:53:35 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55d01058-d92c-4025-aa25-2e37712fdf37 + - be48a88a-c85d-49db-9420-e4c1720d8e65 status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamex8c68120d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d\"\ - ,\r\n \"etag\": \"W/\\\"94ffbcf2-69fc-49c0-aa50-6b5f637d48b4\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"dc54543d-a232-424a-bf8c-95902537dc2f\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"e655c189-fada-4e3d-8b40-450fbca299ae\",\r\n \"\ + \ \"resourceGuid\": \"6e98e7ce-820b-4ed9-b3c1-4f2cecc33aff\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:25 GMT + - Tue, 02 Feb 2021 11:53:36 GMT etag: - - W/"94ffbcf2-69fc-49c0-aa50-6b5f637d48b4" + - W/"dc54543d-a232-424a-bf8c-95902537dc2f" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 84bf1831-5030-4dc2-bd36-24e6ff38ae05 + - e97cd8c6-5681-44fe-8b52-854c4a5d5a25 status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamex8c68120d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ - ,\r\n \"etag\": \"W/\\\"f2fa2bad-7cfa-42ee-ace6-c1cce645bb0b\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"f0a06bcb-2865-432b-bf3c-5277885d7e92\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bea29397-c7fc-4479-a140-356539eff338?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/26d02931-0cb1-4213-830c-39639f74ec98?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:25 GMT + - Tue, 02 Feb 2021 11:53:36 GMT expires: - '-1' pragma: @@ -207,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2bf81bf0-fe3c-4673-b773-4afb228c2ea6 + - 11106f27-10e2-42dc-a1a5-0611e435861b x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/bea29397-c7fc-4479-a140-356539eff338?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/26d02931-0cb1-4213-830c-39639f74ec98?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:29 GMT + - Tue, 02 Feb 2021 11:53:39 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a28e866f-78c3-43a4-8d22-9f370a3b7a00 + - 18400957-3ec6-42ab-9f37-6f39b2edcd7d status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamex8c68120d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ - ,\r\n \"etag\": \"W/\\\"db387546-f295-4ee7-ab9e-0a05c18204ce\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"309567be-0674-497b-9ace-2d8ca6a992fb\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:29 GMT + - Tue, 02 Feb 2021 11:53:40 GMT etag: - - W/"db387546-f295-4ee7-ab9e-0a05c18204ce" + - W/"309567be-0674-497b-9ace-2d8ca6a992fb" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9cb5c5f7-0cc0-48f5-82b6-88bba4e29954 + - 61e5576a-aef7-4e9b-b88e-4cfcafdafc92 status: code: 200 message: OK @@ -334,7 +334,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d?api-version=2020-06-01 response: @@ -342,8 +342,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset8c68120d\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -351,17 +352,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -377,20 +379,20 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"0283d8fa-fafd-4a11-920f-2e1edd7d9449\"\r\n }\r\n}" + : \"8c63edcd-0ea6-412f-b8b7-07a8a1702b06\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2992' + - '3131' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:41 GMT + - Tue, 02 Feb 2021 11:53:51 GMT expires: - '-1' pragma: @@ -403,7 +405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4798 + - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -421,13 +423,107 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:54:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29928 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 11:55:39 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29927 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -437,7 +533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:34:51 GMT + - Tue, 02 Feb 2021 11:56:10 GMT expires: - '-1' pragma: @@ -454,7 +550,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29894 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29925 status: code: 200 message: OK @@ -468,13 +564,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -484,7 +580,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:36:28 GMT + - Tue, 02 Feb 2021 11:56:40 GMT expires: - '-1' pragma: @@ -501,7 +597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29904 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29924 status: code: 200 message: OK @@ -515,13 +611,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -531,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:36:59 GMT + - Tue, 02 Feb 2021 11:57:10 GMT expires: - '-1' pragma: @@ -548,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29902 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29923 status: code: 200 message: OK @@ -562,13 +658,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -578,7 +674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:37:29 GMT + - Tue, 02 Feb 2021 11:57:40 GMT expires: - '-1' pragma: @@ -595,7 +691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29901 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29922 status: code: 200 message: OK @@ -609,13 +705,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -625,7 +721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:37:59 GMT + - Tue, 02 Feb 2021 11:58:11 GMT expires: - '-1' pragma: @@ -642,7 +738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29900 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29920 status: code: 200 message: OK @@ -656,13 +752,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -672,7 +768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:38:30 GMT + - Tue, 02 Feb 2021 11:58:41 GMT expires: - '-1' pragma: @@ -689,7 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29899 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29919 status: code: 200 message: OK @@ -703,13 +799,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -719,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:39:01 GMT + - Tue, 02 Feb 2021 11:59:12 GMT expires: - '-1' pragma: @@ -736,7 +832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29897 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29918 status: code: 200 message: OK @@ -750,13 +846,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -766,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:39:31 GMT + - Tue, 02 Feb 2021 11:59:42 GMT expires: - '-1' pragma: @@ -783,7 +879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29896 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29917 status: code: 200 message: OK @@ -797,13 +893,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -813,7 +909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:40:01 GMT + - Tue, 02 Feb 2021 12:00:13 GMT expires: - '-1' pragma: @@ -830,7 +926,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29900 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29915 status: code: 200 message: OK @@ -844,13 +940,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -860,7 +956,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:40:31 GMT + - Tue, 02 Feb 2021 12:00:43 GMT expires: - '-1' pragma: @@ -877,7 +973,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29899 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29914 status: code: 200 message: OK @@ -891,13 +987,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -907,7 +1003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:41:01 GMT + - Tue, 02 Feb 2021 12:01:13 GMT expires: - '-1' pragma: @@ -924,7 +1020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29897 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29913 status: code: 200 message: OK @@ -938,13 +1034,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ \r\n}" headers: cache-control: @@ -954,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:41:32 GMT + - Tue, 02 Feb 2021 12:01:44 GMT expires: - '-1' pragma: @@ -971,7 +1067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29896 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -985,14 +1081,61 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cee75335-c129-4a23-a9e2-5ff1be4f325f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:34:39.1304066+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:41:35.0835228+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"cee75335-c129-4a23-a9e2-5ff1be4f325f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:02:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29910 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/d2c14ad1-fea4-4414-ae39-e787ae611063?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T11:53:48.9766585+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:02:36.6358632+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"d2c14ad1-fea4-4414-ae39-e787ae611063\"\r\n}" headers: cache-control: - no-cache @@ -1001,7 +1144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:42:03 GMT + - Tue, 02 Feb 2021 12:02:44 GMT expires: - '-1' pragma: @@ -1018,7 +1161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29894 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29908 status: code: 200 message: OK @@ -1032,7 +1175,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d?api-version=2020-06-01 response: @@ -1040,8 +1183,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset8c68120d\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -1049,17 +1193,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -1075,16 +1220,16 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"0283d8fa-fafd-4a11-920f-2e1edd7d9449\"\r\n }\r\n}" + : \"8c63edcd-0ea6-412f-b8b7-07a8a1702b06\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2993' + - '3132' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:42:03 GMT + - Tue, 02 Feb 2021 12:02:44 GMT expires: - '-1' pragma: @@ -1101,7 +1246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2586 + - Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2590 status: code: 200 message: OK @@ -1115,7 +1260,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/0/instanceView?api-version=2020-06-01 response: @@ -1130,7 +1275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:45:03 GMT + - Tue, 02 Feb 2021 12:05:45 GMT expires: - '-1' pragma: @@ -1159,37 +1304,37 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1/instanceView?api-version=2020-06-01 response: body: - string: "{\r\n \"placementGroupId\": \"8885cbed-fcae-432e-be4d-fe6e046224a3\"\ + string: "{\r\n \"placementGroupId\": \"790d6ab5-25b7-4e8a-a879-e93cc9674b17\"\ ,\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \ \ \"computerName\": \"testPC000001\",\r\n \"osName\": \"Windows Server 2016\ \ Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 10.0.14393.0\"\ - ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1005\",\r\n \ + ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"GuestAgent is running and processing the extensions.\"\ - ,\r\n \"time\": \"2021-01-19T09:45:02+00:00\"\r\n }\r\n ],\r\ + ,\r\n \"time\": \"2021-02-02T12:05:36+00:00\"\r\n }\r\n ],\r\ \n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Geneva.GenevaMonitoring\"\ ,\r\n \"typeHandlerVersion\": \"2.22.0.1\",\r\n \"status\":\ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"\ level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \ \"message\": \"ExtensionOperation:enable. Status:Success\"\r\n }\r\ \n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ - ,\r\n \"typeHandlerVersion\": \"2.58.1\",\r\n \"status\": {\r\ + ,\r\n \"typeHandlerVersion\": \"2.58.4\",\r\n \"status\": {\r\ \n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ : \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n \ - \ }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_5b5ed6dabbfd4ea6833f51d347c071d8\"\ + \ }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_a96771b2a9874d10ac71aaef0781eb23\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T09:34:52.4741034+00:00\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T11:54:01.8517172+00:00\"\ \r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\ \n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ ,\r\n \"type\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ - ,\r\n \"typeHandlerVersion\": \"2.58.1\",\r\n \"statuses\": [\r\n\ + ,\r\n \"typeHandlerVersion\": \"2.58.4\",\r\n \"statuses\": [\r\n\ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ \ succeeded\",\r\n \"message\": \"Enable AntimalwareSignature extension\ @@ -1199,11 +1344,11 @@ interactions: \n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ \ succeeded\",\r\n \"message\": \"ExtensionOperation:enable. Status:Success\"\ - ,\r\n \"time\": \"2021-01-19T09:44:56+00:00\"\r\n }\r\n \ + ,\r\n \"time\": \"2021-02-02T12:05:33+00:00\"\r\n }\r\n \ \ ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ - ,\r\n \"time\": \"2021-01-19T09:41:35.0054092+00:00\"\r\n },\r\n \ + ,\r\n \"time\": \"2021-02-02T12:02:36.5421402+00:00\"\r\n },\r\n \ \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -1214,7 +1359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:45:04 GMT + - Tue, 02 Feb 2021 12:05:45 GMT expires: - '-1' pragma: @@ -1247,7 +1392,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1?$expand=instanceView&api-version=2020-06-01 response: @@ -1255,40 +1400,41 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset8c68120d_1\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualMachines/1\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ - ,\r\n \"location\": \"eastus\",\r\n \"instanceId\": \"1\",\r\n \"sku\"\ - : {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n\ - \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"\ - modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"instanceView\"\ - : {\r\n \"placementGroupId\": \"8885cbed-fcae-432e-be4d-fe6e046224a3\"\ - ,\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\":\ - \ 1,\r\n \"computerName\": \"testPC000001\",\r\n \"osName\": \"\ - Windows Server 2016 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows\ - \ NT 10.0.14393.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\"\ - : \"2.7.41491.1005\",\r\n \"statuses\": [\r\n {\r\n \ - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ - : \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"\ - message\": \"GuestAgent is running and processing the extensions.\",\r\n \ - \ \"time\": \"2021-01-19T09:45:02+00:00\"\r\n }\r\n \ - \ ],\r\n \"extensionHandlers\": [\r\n {\r\n \ - \ \"type\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"\ - typeHandlerVersion\": \"2.22.0.1\",\r\n \"status\": {\r\n \ - \ \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ - : \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ - \ \"message\": \"ExtensionOperation:enable. Status:Success\"\r\n \ - \ }\r\n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ - ,\r\n \"typeHandlerVersion\": \"2.58.1\",\r\n \"status\"\ + ,\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ + : \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\"\ + : \"VirtualMachineScaleSet\",\r\n \"instanceView\": {\r\n \"placementGroupId\"\ + : \"790d6ab5-25b7-4e8a-a879-e93cc9674b17\",\r\n \"platformUpdateDomain\"\ + : 1,\r\n \"platformFaultDomain\": 1,\r\n \"computerName\": \"testPC000001\"\ + ,\r\n \"osName\": \"Windows Server 2016 Datacenter\",\r\n \"osVersion\"\ + : \"Microsoft Windows NT 10.0.14393.0\",\r\n \"vmAgent\": {\r\n \ + \ \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \"statuses\": [\r\n\ + \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n\ + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ + ,\r\n \"message\": \"GuestAgent is running and processing the extensions.\"\ + ,\r\n \"time\": \"2021-02-02T12:05:36+00:00\"\r\n }\r\n\ + \ ],\r\n \"extensionHandlers\": [\r\n {\r\n \ + \ \"type\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \ + \ \"typeHandlerVersion\": \"2.22.0.1\",\r\n \"status\": {\r\n\ + \ \"code\": \"ProvisioningState/succeeded\",\r\n \ + \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n\ + \ \"message\": \"ExtensionOperation:enable. Status:Success\"\r\ + \n }\r\n },\r\n {\r\n \"type\": \"\ + Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ + \n \"typeHandlerVersion\": \"2.58.4\",\r\n \"status\"\ : {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ \r\n }\r\n }\r\n ]\r\n },\r\n \"disks\"\ - : [\r\n {\r\n \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_5b5ed6dabbfd4ea6833f51d347c071d8\"\ + : [\r\n {\r\n \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_a96771b2a9874d10ac71aaef0781eb23\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\"\ : \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\ \n \"displayStatus\": \"Provisioning succeeded\",\r\n \ - \ \"time\": \"2021-01-19T09:34:52.4741034+00:00\"\r\n }\r\ + \ \"time\": \"2021-02-02T11:54:01.8517172+00:00\"\r\n }\r\ \n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n \ \ {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ ,\r\n \"type\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ - ,\r\n \"typeHandlerVersion\": \"2.58.1\",\r\n \"statuses\"\ + ,\r\n \"typeHandlerVersion\": \"2.58.4\",\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ : \"Provisioning succeeded\",\r\n \"message\": \"Enable AntimalwareSignature\ @@ -1299,12 +1445,12 @@ interactions: : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\"\ : \"Provisioning succeeded\",\r\n \"message\": \"ExtensionOperation:enable.\ - \ Status:Success\",\r\n \"time\": \"2021-01-19T09:44:56+00:00\"\ + \ Status:Success\",\r\n \"time\": \"2021-02-02T12:05:33+00:00\"\ \r\n }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\"\ : \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"\ ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \ \ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\"\ - : \"2021-01-19T09:41:35.0054092+00:00\"\r\n },\r\n {\r\n \ + : \"2021-02-02T12:02:36.5421402+00:00\"\r\n },\r\n {\r\n \ \ \"code\": \"PowerState/running\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\ \n },\r\n \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\"\ @@ -1312,16 +1458,16 @@ interactions: :false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"\ ipConfigurations\":[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\"\ :\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ - },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"16cd4859-1297-4798-a403-222f53548a7e\"\ + },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"ac57e9eb-2554-499a-8a6c-2d7d9ea23b0e\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\ \n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\ + ,\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n\ - \ \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_5b5ed6dabbfd4ea6833f51d347c071d8\"\ + \ \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_a96771b2a9874d10ac71aaef0781eb23\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinescalesvirtualmachinescaleseOS__1_5b5ed6dabbfd4ea6833f51d347c071d8\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinescalesvirtualmachinescaleseOS__1_a96771b2a9874d10ac71aaef0781eb23\"\ \r\n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"dataDisks\"\ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testPC000001\"\ ,\r\n \"adminUsername\": \"testuser\",\r\n \"windowsConfiguration\"\ @@ -1351,11 +1497,11 @@ interactions: cache-control: - no-cache content-length: - - '7854' + - '7961' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:45:04 GMT + - Tue, 02 Feb 2021 12:05:46 GMT expires: - '-1' pragma: @@ -1392,7 +1538,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1?api-version=2020-06-01 response: @@ -1400,24 +1546,25 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset8c68120d_1\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualMachines/1\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ - ,\r\n \"location\": \"eastus\",\r\n \"instanceId\": \"1\",\r\n \"sku\"\ - : {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n\ - \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"\ - modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\"\ - : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ - :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ - dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ - :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ - },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"16cd4859-1297-4798-a403-222f53548a7e\"\ + ,\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ + : \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\"\ + : \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"\ + networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\":{\"\ + primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\"\ + :[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testPC\"\ + ,\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ + },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"ac57e9eb-2554-499a-8a6c-2d7d9ea23b0e\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\ \n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\ + ,\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n\ - \ \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_5b5ed6dabbfd4ea6833f51d347c071d8\"\ + \ \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_a96771b2a9874d10ac71aaef0781eb23\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinescalesvirtualmachinescaleseOS__1_5b5ed6dabbfd4ea6833f51d347c071d8\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinescalesvirtualmachinescaleseOS__1_a96771b2a9874d10ac71aaef0781eb23\"\ \r\n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"dataDisks\"\ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testPC000001\"\ ,\r\n \"adminUsername\": \"testuser\",\r\n \"windowsConfiguration\"\ @@ -1445,15 +1592,15 @@ interactions: \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/49ea1222-03f8-47f4-a83b-8e84cd443f01?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd88576c-0cd3-4e4d-b1bb-bbc49935248b?api-version=2020-06-01 cache-control: - no-cache content-length: - - '4480' + - '4587' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:45:05 GMT + - Tue, 02 Feb 2021 12:05:47 GMT expires: - '-1' pragma: @@ -1470,9 +1617,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4800 + - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4800 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' x-ms-request-charge: - '0' status: @@ -1488,23 +1635,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/49ea1222-03f8-47f4-a83b-8e84cd443f01?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/cd88576c-0cd3-4e4d-b1bb-bbc49935248b?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:45:05.8023078+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:45:05.9273391+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"49ea1222-03f8-47f4-a83b-8e84cd443f01\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:05:47.6213325+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:05:47.746335+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"cd88576c-0cd3-4e4d-b1bb-bbc49935248b\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:45:36 GMT + - Tue, 02 Feb 2021 12:06:18 GMT expires: - '-1' pragma: @@ -1521,7 +1668,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29906 + - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29907 status: code: 200 message: OK @@ -1535,7 +1682,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1?api-version=2020-06-01 response: @@ -1543,24 +1690,25 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescaleset8c68120d_1\",\r\n \"id\"\ : \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualMachines/1\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\"\ - ,\r\n \"location\": \"eastus\",\r\n \"instanceId\": \"1\",\r\n \"sku\"\ - : {\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n\ - \ },\r\n \"properties\": {\r\n \"latestModelApplied\": true,\r\n \"\ - modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\"\ - : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ - :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ - dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ - :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ - },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"16cd4859-1297-4798-a403-222f53548a7e\"\ + ,\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"instanceId\": \"1\",\r\n \"sku\": {\r\n \"name\"\ + : \"Standard_D1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\"\ + : {\r\n \"latestModelApplied\": true,\r\n \"modelDefinitionApplied\"\ + : \"VirtualMachineScaleSet\",\r\n \"networkProfileConfiguration\": {\"\ + networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\":{\"\ + primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\"\ + :[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"testPC\"\ + ,\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamex8c68120d/subnets/subnetnamex8c68120d\"\ + },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"vmId\": \"ac57e9eb-2554-499a-8a6c-2d7d9ea23b0e\"\ ,\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"\ imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\ \n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.4104.2012040817\"\ + ,\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.4169.2101090332\"\ \r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n\ - \ \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_5b5ed6dabbfd4ea6833f51d347c071d8\"\ + \ \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_a96771b2a9874d10ac71aaef0781eb23\"\ ,\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\"\ ,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\ - ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinescalesvirtualmachinescaleseOS__1_5b5ed6dabbfd4ea6833f51d347c071d8\"\ + ,\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/disks/virtualmachinescalesvirtualmachinescaleseOS__1_a96771b2a9874d10ac71aaef0781eb23\"\ \r\n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"dataDisks\"\ : []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"testPC000001\"\ ,\r\n \"adminUsername\": \"testuser\",\r\n \"windowsConfiguration\"\ @@ -1590,11 +1738,11 @@ interactions: cache-control: - no-cache content-length: - - '4481' + - '4588' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:45:37 GMT + - Tue, 02 Feb 2021 12:06:19 GMT expires: - '-1' pragma: @@ -1629,7 +1777,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1/restart?api-version=2020-06-01 response: @@ -1637,17 +1785,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8afee77e-5f55-4742-bd4c-3f6fe7f50fe8?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/759f2bfe-b405-4735-9157-d228e4588630?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:45:37 GMT + - Tue, 02 Feb 2021 12:06:19 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8afee77e-5f55-4742-bd4c-3f6fe7f50fe8?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/759f2bfe-b405-4735-9157-d228e4588630?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1658,7 +1806,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetVMActions3Min;199,Microsoft.Compute/VMScaleSetVMActions30Min;999,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VMScaleSetVMActions3Min;199,Microsoft.Compute/VMScaleSetVMActions30Min;999,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-writes: - '1199' x-ms-request-charge: @@ -1676,14 +1824,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8afee77e-5f55-4742-bd4c-3f6fe7f50fe8?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/759f2bfe-b405-4735-9157-d228e4588630?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:45:37.5679316+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:45:38.9586013+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"8afee77e-5f55-4742-bd4c-3f6fe7f50fe8\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:06:19.3089768+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:06:20.7777875+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"759f2bfe-b405-4735-9157-d228e4588630\"\r\n}" headers: cache-control: - no-cache @@ -1692,7 +1840,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:46:07 GMT + - Tue, 02 Feb 2021 12:06:49 GMT expires: - '-1' pragma: @@ -1709,7 +1857,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29904 + - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29905 status: code: 200 message: OK @@ -1723,9 +1871,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8afee77e-5f55-4742-bd4c-3f6fe7f50fe8?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/759f2bfe-b405-4735-9157-d228e4588630?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -1735,7 +1883,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:46:07 GMT + - Tue, 02 Feb 2021 12:06:50 GMT expires: - '-1' pragma: @@ -1748,7 +1896,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29903 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29904 status: code: 200 message: OK @@ -1764,7 +1912,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1/poweroff?skipShutdown=false&api-version=2020-06-01 response: @@ -1772,17 +1920,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aee58e24-0ae8-4f3b-8eaa-5f5e2e686f6a?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/54b38c99-df24-4f38-bd1a-a7bb45211632?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:46:08 GMT + - Tue, 02 Feb 2021 12:06:50 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aee58e24-0ae8-4f3b-8eaa-5f5e2e686f6a?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/54b38c99-df24-4f38-bd1a-a7bb45211632?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1811,14 +1959,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aee58e24-0ae8-4f3b-8eaa-5f5e2e686f6a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/54b38c99-df24-4f38-bd1a-a7bb45211632?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:46:08.6461628+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:46:27.7711015+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"aee58e24-0ae8-4f3b-8eaa-5f5e2e686f6a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:06:50.4652326+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:06:58.2772037+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"54b38c99-df24-4f38-bd1a-a7bb45211632\"\r\n}" headers: cache-control: - no-cache @@ -1827,7 +1975,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:46:38 GMT + - Tue, 02 Feb 2021 12:07:20 GMT expires: - '-1' pragma: @@ -1844,7 +1992,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29901 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29902 status: code: 200 message: OK @@ -1858,9 +2006,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/aee58e24-0ae8-4f3b-8eaa-5f5e2e686f6a?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/54b38c99-df24-4f38-bd1a-a7bb45211632?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -1870,7 +2018,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:46:38 GMT + - Tue, 02 Feb 2021 12:07:21 GMT expires: - '-1' pragma: @@ -1883,7 +2031,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29900 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29901 status: code: 200 message: OK @@ -1899,7 +2047,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1/start?api-version=2020-06-01 response: @@ -1907,17 +2055,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f86d279e-70e1-4705-97dc-741710b83dcc?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3677242d-b463-43d7-a289-b4568941025d?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:46:39 GMT + - Tue, 02 Feb 2021 12:07:21 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f86d279e-70e1-4705-97dc-741710b83dcc?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3677242d-b463-43d7-a289-b4568941025d?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1928,7 +2076,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetVMActions3Min;198,Microsoft.Compute/VMScaleSetVMActions30Min;998,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4799 + - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetVMActions3Min;198,Microsoft.Compute/VMScaleSetVMActions30Min;998,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-writes: - '1197' x-ms-request-charge: @@ -1946,14 +2094,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f86d279e-70e1-4705-97dc-741710b83dcc?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3677242d-b463-43d7-a289-b4568941025d?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:46:39.8648805+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:46:45.8179856+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"f86d279e-70e1-4705-97dc-741710b83dcc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:07:21.6526477+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:07:49.9500603+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"3677242d-b463-43d7-a289-b4568941025d\"\r\n}" headers: cache-control: - no-cache @@ -1962,7 +2110,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:47:10 GMT + - Tue, 02 Feb 2021 12:07:51 GMT expires: - '-1' pragma: @@ -1979,7 +2127,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29897 + - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29899 status: code: 200 message: OK @@ -1993,9 +2141,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f86d279e-70e1-4705-97dc-741710b83dcc?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/3677242d-b463-43d7-a289-b4568941025d?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2005,7 +2153,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:47:10 GMT + - Tue, 02 Feb 2021 12:07:51 GMT expires: - '-1' pragma: @@ -2018,7 +2166,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29896 + - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29898 status: code: 200 message: OK @@ -2036,7 +2184,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1/runCommand?api-version=2020-06-01 response: @@ -2044,17 +2192,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:47:11 GMT + - Tue, 02 Feb 2021 12:07:52 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2065,7 +2213,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1193,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4799 + - Microsoft.Compute/VMScaleSetActions3Min;236,Microsoft.Compute/VMScaleSetActions30Min;1194,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-writes: - '1196' x-ms-request-charge: @@ -2083,13 +2231,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:47:10.9273302+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"6abd62ea-b89c-45f8-89a5-e96f8e2f6037\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:07:52.7469575+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"288ebb77-eb6d-449c-98e0-e74335973560\"\ \r\n}" headers: cache-control: @@ -2099,7 +2247,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:47:41 GMT + - Tue, 02 Feb 2021 12:08:22 GMT expires: - '-1' pragma: @@ -2116,7 +2264,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29894 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29895 status: code: 200 message: OK @@ -2130,13 +2278,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:47:10.9273302+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"6abd62ea-b89c-45f8-89a5-e96f8e2f6037\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:07:52.7469575+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"288ebb77-eb6d-449c-98e0-e74335973560\"\ \r\n}" headers: cache-control: @@ -2146,7 +2294,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:48:11 GMT + - Tue, 02 Feb 2021 12:08:53 GMT expires: - '-1' pragma: @@ -2163,7 +2311,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29891 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29892 status: code: 200 message: OK @@ -2177,13 +2325,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:47:10.9273302+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"6abd62ea-b89c-45f8-89a5-e96f8e2f6037\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:07:52.7469575+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"288ebb77-eb6d-449c-98e0-e74335973560\"\ \r\n}" headers: cache-control: @@ -2193,7 +2341,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:48:41 GMT + - Tue, 02 Feb 2021 12:09:23 GMT expires: - '-1' pragma: @@ -2210,7 +2358,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29888 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29889 status: code: 200 message: OK @@ -2224,13 +2372,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:47:10.9273302+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"6abd62ea-b89c-45f8-89a5-e96f8e2f6037\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:07:52.7469575+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"288ebb77-eb6d-449c-98e0-e74335973560\"\ \r\n}" headers: cache-control: @@ -2240,7 +2388,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:49:11 GMT + - Tue, 02 Feb 2021 12:09:54 GMT expires: - '-1' pragma: @@ -2257,7 +2405,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29885 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29886 status: code: 200 message: OK @@ -2271,13 +2419,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:47:10.9273302+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"6abd62ea-b89c-45f8-89a5-e96f8e2f6037\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:07:52.7469575+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"288ebb77-eb6d-449c-98e0-e74335973560\"\ \r\n}" headers: cache-control: @@ -2287,7 +2435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:49:43 GMT + - Tue, 02 Feb 2021 12:10:24 GMT expires: - '-1' pragma: @@ -2304,7 +2452,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29882 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29907 status: code: 200 message: OK @@ -2318,18 +2466,112 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:47:10.9273302+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:50:02.7083649+00:00\",\r\n \"status\": \"Succeeded\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:07:52.7469575+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"288ebb77-eb6d-449c-98e0-e74335973560\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:10:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29904 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:07:52.7469575+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"288ebb77-eb6d-449c-98e0-e74335973560\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:11:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29901 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:07:52.7469575+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:11:34.3101888+00:00\",\r\n \"status\": \"Succeeded\"\ ,\r\n \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ComponentStatus/StdOut/succeeded\"\ ,\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\"\ :\"This is a sample script with parameters \"},{\"code\":\"ComponentStatus/StdErr/succeeded\"\ ,\"level\":\"Info\",\"displayStatus\":\"Provisioning succeeded\",\"message\"\ - :\"\"}]}\r\n },\r\n \"name\": \"6abd62ea-b89c-45f8-89a5-e96f8e2f6037\"\r\ + :\"\"}]}\r\n },\r\n \"name\": \"288ebb77-eb6d-449c-98e0-e74335973560\"\r\ \n}" headers: cache-control: @@ -2339,7 +2581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:50:13 GMT + - Tue, 02 Feb 2021 12:11:54 GMT expires: - '-1' pragma: @@ -2356,7 +2598,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29900 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29899 status: code: 200 message: OK @@ -2370,9 +2612,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6abd62ea-b89c-45f8-89a5-e96f8e2f6037?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/288ebb77-eb6d-449c-98e0-e74335973560?monitor=true&api-version=2020-06-01 response: body: string: '{"value":[{"code":"ComponentStatus/StdOut/succeeded","level":"Info","displayStatus":"Provisioning @@ -2386,7 +2628,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:50:13 GMT + - Tue, 02 Feb 2021 12:11:55 GMT expires: - '-1' pragma: @@ -2403,7 +2645,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29899 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29898 status: code: 200 message: OK @@ -2421,7 +2663,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/manualupgrade?api-version=2020-06-01 response: @@ -2429,17 +2671,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e8c6df0-fc0b-4bc3-88a3-2b1b79401fa6?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e4ee9862-990d-4d04-891b-ffd9940957df?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:50:14 GMT + - Tue, 02 Feb 2021 12:11:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e8c6df0-fc0b-4bc3-88a3-2b1b79401fa6?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e4ee9862-990d-4d04-891b-ffd9940957df?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2468,14 +2710,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e8c6df0-fc0b-4bc3-88a3-2b1b79401fa6?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e4ee9862-990d-4d04-891b-ffd9940957df?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:50:14.1459275+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:50:14.3334199+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"2e8c6df0-fc0b-4bc3-88a3-2b1b79401fa6\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:11:56.4665754+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:11:56.6385007+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"e4ee9862-990d-4d04-891b-ffd9940957df\"\r\n}" headers: cache-control: - no-cache @@ -2484,7 +2726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:50:44 GMT + - Tue, 02 Feb 2021 12:12:26 GMT expires: - '-1' pragma: @@ -2501,7 +2743,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29897 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29896 status: code: 200 message: OK @@ -2515,9 +2757,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2e8c6df0-fc0b-4bc3-88a3-2b1b79401fa6?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/e4ee9862-990d-4d04-891b-ffd9940957df?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2527,7 +2769,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:50:44 GMT + - Tue, 02 Feb 2021 12:12:27 GMT expires: - '-1' pragma: @@ -2540,7 +2782,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29896 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29895 status: code: 200 message: OK @@ -2556,7 +2798,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1/deallocate?api-version=2020-06-01 response: @@ -2564,17 +2806,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2d2712f4-cb23-4e96-ba6a-4d6638e04040?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56519289-1013-4aab-8ff8-fc3f26797fe6?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:50:44 GMT + - Tue, 02 Feb 2021 12:12:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2d2712f4-cb23-4e96-ba6a-4d6638e04040?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56519289-1013-4aab-8ff8-fc3f26797fe6?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2585,7 +2827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4799 + - Microsoft.Compute/DeleteVMScaleSetVM3Min;239,Microsoft.Compute/DeleteVMScaleSetVM30Min;1198,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-writes: - '1194' x-ms-request-charge: @@ -2603,23 +2845,70 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2d2712f4-cb23-4e96-ba6a-4d6638e04040?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56519289-1013-4aab-8ff8-fc3f26797fe6?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:50:45.3176646+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:51:09.8175754+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"2d2712f4-cb23-4e96-ba6a-4d6638e04040\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:12:27.5917957+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"56519289-1013-4aab-8ff8-fc3f26797fe6\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:12:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29893 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56519289-1013-4aab-8ff8-fc3f26797fe6?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:12:27.5917957+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:13:24.420208+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"56519289-1013-4aab-8ff8-fc3f26797fe6\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:51:15 GMT + - Tue, 02 Feb 2021 12:13:28 GMT expires: - '-1' pragma: @@ -2636,7 +2925,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29894 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29890 status: code: 200 message: OK @@ -2650,9 +2939,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/2d2712f4-cb23-4e96-ba6a-4d6638e04040?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/56519289-1013-4aab-8ff8-fc3f26797fe6?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2662,7 +2951,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:51:15 GMT + - Tue, 02 Feb 2021 12:13:28 GMT expires: - '-1' pragma: @@ -2675,7 +2964,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29893 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29889 status: code: 200 message: OK @@ -2693,7 +2982,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/delete?api-version=2020-06-01 response: @@ -2701,17 +2990,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f342e9e5-98c5-4f34-b6fb-cb028e0faecc?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/119198a8-e30b-4340-9c45-462bf41a501f?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:51:15 GMT + - Tue, 02 Feb 2021 12:13:29 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f342e9e5-98c5-4f34-b6fb-cb028e0faecc?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/119198a8-e30b-4340-9c45-462bf41a501f?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2722,7 +3011,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1192,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1197,Microsoft.Compute/VmssQueuedVMOperations;4799 + - Microsoft.Compute/VMScaleSetActions3Min;238,Microsoft.Compute/VMScaleSetActions30Min;1192,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1198,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-writes: - '1193' x-ms-request-charge: @@ -2740,14 +3029,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f342e9e5-98c5-4f34-b6fb-cb028e0faecc?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/119198a8-e30b-4340-9c45-462bf41a501f?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:51:16.3958409+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:51:17.1926605+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"f342e9e5-98c5-4f34-b6fb-cb028e0faecc\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:13:29.7171742+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:13:30.6077588+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"119198a8-e30b-4340-9c45-462bf41a501f\"\r\n}" headers: cache-control: - no-cache @@ -2756,7 +3045,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:51:46 GMT + - Tue, 02 Feb 2021 12:13:59 GMT expires: - '-1' pragma: @@ -2773,7 +3062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29890 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29886 status: code: 200 message: OK @@ -2787,9 +3076,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/f342e9e5-98c5-4f34-b6fb-cb028e0faecc?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/119198a8-e30b-4340-9c45-462bf41a501f?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2799,7 +3088,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 09:51:47 GMT + - Tue, 02 Feb 2021 12:13:59 GMT expires: - '-1' pragma: @@ -2812,7 +3101,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29889 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29885 status: code: 200 message: OK @@ -2828,7 +3117,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d/virtualmachines/1?api-version=2020-06-01 response: @@ -2836,17 +3125,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/472e9bf7-364c-4541-8512-746bb69396ae?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a6b17767-42cb-45d1-a5c4-469aadee6305?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:51:47 GMT + - Tue, 02 Feb 2021 12:14:00 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/472e9bf7-364c-4541-8512-746bb69396ae?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a6b17767-42cb-45d1-a5c4-469aadee6305?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2875,14 +3164,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/472e9bf7-364c-4541-8512-746bb69396ae?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a6b17767-42cb-45d1-a5c4-469aadee6305?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:51:47.5367119+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:51:47.6304606+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"472e9bf7-364c-4541-8512-746bb69396ae\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:14:00.8266846+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:14:00.9204505+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"a6b17767-42cb-45d1-a5c4-469aadee6305\"\r\n}" headers: cache-control: - no-cache @@ -2891,7 +3180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:52:17 GMT + - Tue, 02 Feb 2021 12:14:31 GMT expires: - '-1' pragma: @@ -2908,7 +3197,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29887 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29883 status: code: 200 message: OK @@ -2924,7 +3213,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescaleset8c68120d?api-version=2020-06-01 response: @@ -2934,17 +3223,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b0c4ebc-52da-4ac9-ae13-cfd04addbdec?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/153dea98-9e77-4c34-8940-5a610b4b25c7?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 09:52:18 GMT + - Tue, 02 Feb 2021 12:14:31 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b0c4ebc-52da-4ac9-ae13-cfd04addbdec?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/153dea98-9e77-4c34-8940-5a610b4b25c7?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2973,14 +3262,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b0c4ebc-52da-4ac9-ae13-cfd04addbdec?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/153dea98-9e77-4c34-8940-5a610b4b25c7?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:52:18.5836103+00:00\",\r\n \"\ - endTime\": \"2021-01-19T09:52:18.6929794+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"6b0c4ebc-52da-4ac9-ae13-cfd04addbdec\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:14:31.8112067+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:14:31.9362083+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"153dea98-9e77-4c34-8940-5a610b4b25c7\"\r\n}" headers: cache-control: - no-cache @@ -2989,7 +3278,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:52:28 GMT + - Tue, 02 Feb 2021 12:14:42 GMT expires: - '-1' pragma: @@ -3006,7 +3295,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29885 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29881 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_vm_2.yaml b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_vm_2.yaml index 5834a9ab7c06..07359092db60 100644 --- a/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_vm_2.yaml +++ b/sdk/compute/azure-mgmt-compute/tests/recordings/test_mgmt_compute_vmss.test_compute_vmss_vm_2.yaml @@ -14,16 +14,16 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexb172129e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e\"\ - ,\r\n \"etag\": \"W/\\\"bacefe81-4a4d-4d8d-ae46-e48440265c81\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"5fec9ecb-b185-4768-a981-baf1a4d3d235\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"faec79f7-21b5-40d9-9aaa-7b83f1b8d08f\",\r\n \"\ + \ \"resourceGuid\": \"dac167bc-0531-4080-9309-b6f4b253d28a\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -32,7 +32,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1e7eba96-96d4-4cf6-8448-3595c24d327b?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b75981b0-12d9-4087-9249-5b039438c018?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -40,7 +40,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:52:46 GMT + - Tue, 02 Feb 2021 12:15:02 GMT expires: - '-1' pragma: @@ -53,9 +53,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 730c7c0e-0c04-40fe-aff9-444e280c3f05 + - bf9bac69-ad36-4449-bcae-156b284f8e2e x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -69,9 +69,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/1e7eba96-96d4-4cf6-8448-3595c24d327b?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/b75981b0-12d9-4087-9249-5b039438c018?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -83,7 +83,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:52:50 GMT + - Tue, 02 Feb 2021 12:15:06 GMT expires: - '-1' pragma: @@ -100,7 +100,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4fbb99aa-d74b-488c-aba1-d91cc7aa77ee + - 318209e0-3467-4c0b-86dc-57c58fc897e7 status: code: 200 message: OK @@ -114,16 +114,16 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"networknamexb172129e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e\"\ - ,\r\n \"etag\": \"W/\\\"c0433786-45be-4d0b-8d5b-c856aaf8c0d0\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"43fd8bfd-3130-405d-abb2-9d8cb789bc4b\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"faec79f7-21b5-40d9-9aaa-7b83f1b8d08f\",\r\n \"\ + \ \"resourceGuid\": \"dac167bc-0531-4080-9309-b6f4b253d28a\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -136,9 +136,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:52:50 GMT + - Tue, 02 Feb 2021 12:15:06 GMT etag: - - W/"c0433786-45be-4d0b-8d5b-c856aaf8c0d0" + - W/"43fd8bfd-3130-405d-abb2-9d8cb789bc4b" expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8039f869-f2a6-4ac7-a584-d64257b7f27c + - c374d723-c135-45f6-8605-5ca92bc8154e status: code: 200 message: OK @@ -173,20 +173,20 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamexb172129e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e\"\ - ,\r\n \"etag\": \"W/\\\"f75a38fd-61d1-4180-8447-9fa6b934d9bd\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"adb11c35-771a-4a97-8c99-ad5513204008\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4fcfeb6d-0c29-4e9f-993b-276ac41d173c?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/79d18017-ea4e-4897-b638-14ae80ae1c9b?api-version=2020-08-01 cache-control: - no-cache content-length: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:52:51 GMT + - Tue, 02 Feb 2021 12:15:07 GMT expires: - '-1' pragma: @@ -207,9 +207,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0534ee5f-6504-424b-8684-4a6ddb820698 + - b4202e4c-3fc3-4531-80e5-43a71bf4825c x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 201 message: Created @@ -223,9 +223,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4fcfeb6d-0c29-4e9f-993b-276ac41d173c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/79d18017-ea4e-4897-b638-14ae80ae1c9b?api-version=2020-08-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -237,7 +237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:52:54 GMT + - Tue, 02 Feb 2021 12:15:10 GMT expires: - '-1' pragma: @@ -254,7 +254,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ebe1070-c20c-4ed9-bad3-2f54f0dbcb5b + - 7e1893f1-1df4-48dc-ba61-29ea6f8c0c8e status: code: 200 message: OK @@ -268,13 +268,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-network/17.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-network/17.1.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e?api-version=2020-08-01 response: body: string: "{\r\n \"name\": \"subnetnamexb172129e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e\"\ - ,\r\n \"etag\": \"W/\\\"a92da172-1041-44da-9024-46528e9c2d3f\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"167f8d21-83a5-4997-8045-da8fe330342a\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ @@ -287,9 +287,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:52:54 GMT + - Tue, 02 Feb 2021 12:15:10 GMT etag: - - W/"a92da172-1041-44da-9024-46528e9c2d3f" + - W/"167f8d21-83a5-4997-8045-da8fe330342a" expires: - '-1' pragma: @@ -306,7 +306,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - db9e58e6-8bcc-44e6-bf56-6af3a66cc79f + - 4746bb7a-e152-4f41-bb16-b878a4f4b97b status: code: 200 message: OK @@ -334,7 +334,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e?api-version=2020-06-01 response: @@ -342,8 +342,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescalesetb172129e\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -351,17 +352,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -377,20 +379,20 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Creating\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"e3f4fa37-d42f-4a96-a0e9-1673c0864ba1\"\r\n }\r\n}" + : \"a8fe4fdd-72d6-4764-a0dd-c020055f0635\"\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 cache-control: - no-cache content-length: - - '2992' + - '3131' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:53:05 GMT + - Tue, 02 Feb 2021 12:15:20 GMT expires: - '-1' pragma: @@ -405,7 +407,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;298,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1196,Microsoft.Compute/VmssQueuedVMOperations;4798 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' x-ms-request-charge: - '2' status: @@ -421,13 +423,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -437,7 +439,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:53:15 GMT + - Tue, 02 Feb 2021 12:15:30 GMT expires: - '-1' pragma: @@ -454,7 +456,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29884 + - Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29908 status: code: 200 message: OK @@ -468,13 +470,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -484,7 +486,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:54:52 GMT + - Tue, 02 Feb 2021 12:17:07 GMT expires: - '-1' pragma: @@ -501,7 +503,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29883 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29907 status: code: 200 message: OK @@ -515,13 +517,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -531,7 +533,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:55:23 GMT + - Tue, 02 Feb 2021 12:17:37 GMT expires: - '-1' pragma: @@ -548,7 +550,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29910 + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29905 status: code: 200 message: OK @@ -562,13 +564,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -578,7 +580,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:55:53 GMT + - Tue, 02 Feb 2021 12:18:08 GMT expires: - '-1' pragma: @@ -595,7 +597,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29909 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29904 status: code: 200 message: OK @@ -609,13 +611,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -625,7 +627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:56:23 GMT + - Tue, 02 Feb 2021 12:18:39 GMT expires: - '-1' pragma: @@ -642,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29908 + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29903 status: code: 200 message: OK @@ -656,13 +658,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -672,7 +674,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:56:54 GMT + - Tue, 02 Feb 2021 12:19:09 GMT expires: - '-1' pragma: @@ -689,7 +691,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29907 + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29902 status: code: 200 message: OK @@ -703,13 +705,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -719,7 +721,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:57:25 GMT + - Tue, 02 Feb 2021 12:19:39 GMT expires: - '-1' pragma: @@ -736,7 +738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29905 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29900 status: code: 200 message: OK @@ -750,13 +752,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -766,7 +768,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:57:55 GMT + - Tue, 02 Feb 2021 12:20:10 GMT expires: - '-1' pragma: @@ -783,7 +785,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29904 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29919 status: code: 200 message: OK @@ -797,13 +799,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -813,7 +815,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:58:25 GMT + - Tue, 02 Feb 2021 12:20:40 GMT expires: - '-1' pragma: @@ -830,7 +832,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29903 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29918 status: code: 200 message: OK @@ -844,13 +846,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -860,7 +862,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:58:55 GMT + - Tue, 02 Feb 2021 12:21:11 GMT expires: - '-1' pragma: @@ -877,7 +879,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29902 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29917 status: code: 200 message: OK @@ -891,13 +893,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -907,7 +909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:59:25 GMT + - Tue, 02 Feb 2021 12:21:41 GMT expires: - '-1' pragma: @@ -924,7 +926,54 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29900 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29915 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:22:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29914 status: code: 200 message: OK @@ -938,13 +987,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -954,7 +1003,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:59:56 GMT + - Tue, 02 Feb 2021 12:22:42 GMT expires: - '-1' pragma: @@ -971,7 +1020,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29899 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29913 status: code: 200 message: OK @@ -985,13 +1034,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -1001,7 +1050,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:00:26 GMT + - Tue, 02 Feb 2021 12:23:13 GMT expires: - '-1' pragma: @@ -1018,7 +1067,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29925 + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -1032,13 +1081,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\ \r\n}" headers: cache-control: @@ -1048,7 +1097,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:00:57 GMT + - Tue, 02 Feb 2021 12:23:43 GMT expires: - '-1' pragma: @@ -1065,7 +1114,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29924 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29910 status: code: 200 message: OK @@ -1079,14 +1128,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/19016d8d-c21f-4f9c-b847-6f2f0d09db3a?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T09:53:03.4898732+00:00\",\r\n \"\ - endTime\": \"2021-01-19T10:01:03.9429893+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"19016d8d-c21f-4f9c-b847-6f2f0d09db3a\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:15:18.1083548+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:23:45.1268684+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"6b3768ac-ffbc-46eb-8cfd-c5f00a6dd033\"\r\n}" headers: cache-control: - no-cache @@ -1095,7 +1144,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:01:27 GMT + - Tue, 02 Feb 2021 12:24:13 GMT expires: - '-1' pragma: @@ -1112,7 +1161,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29922 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29908 status: code: 200 message: OK @@ -1126,7 +1175,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e?api-version=2020-06-01 response: @@ -1134,8 +1183,9 @@ interactions: string: "{\r\n \"name\": \"virtualmachinescalesetb172129e\",\r\n \"id\": \"\ /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e\"\ ,\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\"\ - : \"eastus\",\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n \ - \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ + : \"eastus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\"\ + : \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D1_v2\",\r\n\ + \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\"\ : {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n\ \ \"mode\": \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\ \n \"osProfile\": {\r\n \"computerNamePrefix\": \"testPC\",\r\n\ @@ -1143,17 +1193,18 @@ interactions: : {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\"\ : true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\"\ : true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \ - \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"createOption\"\ - : \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"\ - managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\ - \n },\r\n \"diskSizeGB\": 512\r\n },\r\n \"\ - imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\"\ - ,\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\"\ - ,\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"\ - networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\"\ - ,\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"\ - dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\"\ - :[{\"name\":\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e\"\ + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\"\ + : \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \ + \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \ + \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \ + \ \"diskSizeGB\": 512\r\n },\r\n \"imageReference\": {\r\n\ + \ \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\"\ + : \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \ + \ \"version\": \"latest\"\r\n }\r\n },\r\n \"networkProfile\"\ + : {\"networkInterfaceConfigurations\":[{\"name\":\"testPC\",\"properties\"\ + :{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"\ + dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\"\ + :\"testPC\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Network/virtualNetworks/networknamexb172129e/subnets/subnetnamexb172129e\"\ },\"privateIPAddressVersion\":\"IPv4\"}}]}}]},\r\n \"extensionProfile\"\ : {\r\n \"extensions\": [\r\n {\r\n \"name\": \"\ Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\ @@ -1169,16 +1220,16 @@ interactions: : {}\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n\ \ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\ \n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\"\ - : \"e3f4fa37-d42f-4a96-a0e9-1673c0864ba1\"\r\n }\r\n}" + : \"a8fe4fdd-72d6-4764-a0dd-c020055f0635\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2993' + - '3132' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:01:28 GMT + - Tue, 02 Feb 2021 12:24:13 GMT expires: - '-1' pragma: @@ -1195,7 +1246,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;397,Microsoft.Compute/GetVMScaleSet30Min;2585 + - Microsoft.Compute/GetVMScaleSet3Min;398,Microsoft.Compute/GetVMScaleSet30Min;2583 status: code: 200 message: OK @@ -1209,7 +1260,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e/virtualmachines/0/instanceView?api-version=2020-06-01 response: @@ -1224,7 +1275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:04:29 GMT + - Tue, 02 Feb 2021 12:27:14 GMT expires: - '-1' pragma: @@ -1253,37 +1304,37 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e/virtualmachines/1/instanceView?api-version=2020-06-01 response: body: - string: "{\r\n \"placementGroupId\": \"0c575a37-ba48-44d8-ba63-343e97d128ba\"\ + string: "{\r\n \"placementGroupId\": \"fb239f0a-3192-410d-a84f-5097fd3e71f9\"\ ,\r\n \"platformUpdateDomain\": 1,\r\n \"platformFaultDomain\": 1,\r\n \ \ \"computerName\": \"testPC000001\",\r\n \"osName\": \"Windows Server 2016\ \ Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 10.0.14393.0\"\ - ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1005\",\r\n \ + ,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.1008\",\r\n \ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\"\ ,\r\n \"message\": \"GuestAgent is running and processing the extensions.\"\ - ,\r\n \"time\": \"2021-01-19T10:03:29+00:00\"\r\n }\r\n ],\r\ + ,\r\n \"time\": \"2021-02-02T12:27:15+00:00\"\r\n }\r\n ],\r\ \n \"extensionHandlers\": [\r\n {\r\n \"type\": \"Microsoft.Azure.Geneva.GenevaMonitoring\"\ ,\r\n \"typeHandlerVersion\": \"2.22.0.1\",\r\n \"status\":\ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"\ level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \ \ \"message\": \"ExtensionOperation:enable. Status:Success\"\r\n }\r\ \n },\r\n {\r\n \"type\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ - ,\r\n \"typeHandlerVersion\": \"2.58.1\",\r\n \"status\": {\r\ + ,\r\n \"typeHandlerVersion\": \"2.58.4\",\r\n \"status\": {\r\ \n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\"\ : \"Info\",\r\n \"displayStatus\": \"Ready\"\r\n }\r\n \ - \ }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_3b935bba63ea45aa8b812f536eea623b\"\ + \ }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"virtualmachinescalesvirtualmachinescaleseOS__1_be412f8b33ef48f89ca00a8741f1f7c7\"\ ,\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\"\ ,\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ - \ succeeded\",\r\n \"time\": \"2021-01-19T09:53:16.6148665+00:00\"\ + \ succeeded\",\r\n \"time\": \"2021-02-02T12:15:52.4210422+00:00\"\ \r\n }\r\n ]\r\n }\r\n ],\r\n \"extensions\": [\r\n {\r\ \n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ ,\r\n \"type\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\"\ - ,\r\n \"typeHandlerVersion\": \"2.58.1\",\r\n \"statuses\": [\r\n\ + ,\r\n \"typeHandlerVersion\": \"2.58.4\",\r\n \"statuses\": [\r\n\ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ \ succeeded\",\r\n \"message\": \"Enable AntimalwareSignature extension\ @@ -1293,11 +1344,11 @@ interactions: \n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning\ \ succeeded\",\r\n \"message\": \"ExtensionOperation:enable. Status:Success\"\ - ,\r\n \"time\": \"2021-01-19T10:03:20+00:00\"\r\n }\r\n \ + ,\r\n \"time\": \"2021-02-02T12:26:59+00:00\"\r\n }\r\n \ \ ]\r\n }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\"\ : [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\"\ - ,\r\n \"time\": \"2021-01-19T10:01:03.8648674+00:00\"\r\n },\r\n \ + ,\r\n \"time\": \"2021-02-02T12:23:45.0487691+00:00\"\r\n },\r\n \ \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\"\ ,\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}" headers: @@ -1308,7 +1359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:04:29 GMT + - Tue, 02 Feb 2021 12:27:15 GMT expires: - '-1' pragma: @@ -1343,7 +1394,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e/virtualmachines/1/redeploy?api-version=2020-06-01 response: @@ -1351,17 +1402,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84f0caf9-889f-4852-837a-6b99c096f9a5?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d9a315c-f161-4765-b556-78dc0ec3ba8b?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 10:04:30 GMT + - Tue, 02 Feb 2021 12:27:15 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84f0caf9-889f-4852-837a-6b99c096f9a5?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d9a315c-f161-4765-b556-78dc0ec3ba8b?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1390,13 +1441,107 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d9a315c-f161-4765-b556-78dc0ec3ba8b?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:27:16.0022548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7d9a315c-f161-4765-b556-78dc0ec3ba8b\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:27:46 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29918 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d9a315c-f161-4765-b556-78dc0ec3ba8b?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:27:16.0022548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7d9a315c-f161-4765-b556-78dc0ec3ba8b\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:28:16 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29915 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84f0caf9-889f-4852-837a-6b99c096f9a5?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d9a315c-f161-4765-b556-78dc0ec3ba8b?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:04:30.7087316+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"84f0caf9-889f-4852-837a-6b99c096f9a5\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:27:16.0022548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7d9a315c-f161-4765-b556-78dc0ec3ba8b\"\ \r\n}" headers: cache-control: @@ -1406,7 +1551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:05:00 GMT + - Tue, 02 Feb 2021 12:28:46 GMT expires: - '-1' pragma: @@ -1423,7 +1568,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29929 + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -1437,13 +1582,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84f0caf9-889f-4852-837a-6b99c096f9a5?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d9a315c-f161-4765-b556-78dc0ec3ba8b?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:04:30.7087316+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"84f0caf9-889f-4852-837a-6b99c096f9a5\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:27:16.0022548+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"7d9a315c-f161-4765-b556-78dc0ec3ba8b\"\ \r\n}" headers: cache-control: @@ -1453,7 +1598,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:05:30 GMT + - Tue, 02 Feb 2021 12:29:17 GMT expires: - '-1' pragma: @@ -1470,7 +1615,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29926 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29909 status: code: 200 message: OK @@ -1484,14 +1629,14 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84f0caf9-889f-4852-837a-6b99c096f9a5?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d9a315c-f161-4765-b556-78dc0ec3ba8b?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:04:30.7087316+00:00\",\r\n \"\ - endTime\": \"2021-01-19T10:05:32.1149991+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"84f0caf9-889f-4852-837a-6b99c096f9a5\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:27:16.0022548+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:29:20.2215945+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"7d9a315c-f161-4765-b556-78dc0ec3ba8b\"\r\n}" headers: cache-control: - no-cache @@ -1500,7 +1645,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:06:02 GMT + - Tue, 02 Feb 2021 12:29:47 GMT expires: - '-1' pragma: @@ -1517,7 +1662,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29924 + - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29907 status: code: 200 message: OK @@ -1531,9 +1676,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/84f0caf9-889f-4852-837a-6b99c096f9a5?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/7d9a315c-f161-4765-b556-78dc0ec3ba8b?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -1543,7 +1688,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 10:06:02 GMT + - Tue, 02 Feb 2021 12:29:48 GMT expires: - '-1' pragma: @@ -1556,7 +1701,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29923 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29906 status: code: 200 message: OK @@ -1574,7 +1719,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e/virtualmachines/1/reimage?api-version=2020-06-01 response: @@ -1582,17 +1727,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 10:06:03 GMT + - Tue, 02 Feb 2021 12:29:48 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -1621,13 +1766,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -1637,7 +1782,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:06:33 GMT + - Tue, 02 Feb 2021 12:30:18 GMT expires: - '-1' pragma: @@ -1654,7 +1799,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29921 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29912 status: code: 200 message: OK @@ -1668,13 +1813,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -1684,7 +1829,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:07:03 GMT + - Tue, 02 Feb 2021 12:30:48 GMT expires: - '-1' pragma: @@ -1701,7 +1846,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29918 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29909 status: code: 200 message: OK @@ -1715,13 +1860,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -1731,7 +1876,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:07:33 GMT + - Tue, 02 Feb 2021 12:31:19 GMT expires: - '-1' pragma: @@ -1748,7 +1893,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29915 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29906 status: code: 200 message: OK @@ -1762,13 +1907,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -1778,7 +1923,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:08:03 GMT + - Tue, 02 Feb 2021 12:31:50 GMT expires: - '-1' pragma: @@ -1795,7 +1940,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29912 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29903 status: code: 200 message: OK @@ -1809,13 +1954,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -1825,7 +1970,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:08:34 GMT + - Tue, 02 Feb 2021 12:32:20 GMT expires: - '-1' pragma: @@ -1842,7 +1987,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29909 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29900 status: code: 200 message: OK @@ -1856,13 +2001,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -1872,7 +2017,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:09:05 GMT + - Tue, 02 Feb 2021 12:32:50 GMT expires: - '-1' pragma: @@ -1889,7 +2034,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29906 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29897 status: code: 200 message: OK @@ -1903,13 +2048,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -1919,7 +2064,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:09:35 GMT + - Tue, 02 Feb 2021 12:33:20 GMT expires: - '-1' pragma: @@ -1936,7 +2081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29903 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29894 status: code: 200 message: OK @@ -1950,13 +2095,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -1966,7 +2111,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:10:05 GMT + - Tue, 02 Feb 2021 12:33:50 GMT expires: - '-1' pragma: @@ -1983,7 +2128,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29908 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29891 status: code: 200 message: OK @@ -1997,13 +2142,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -2013,7 +2158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:10:36 GMT + - Tue, 02 Feb 2021 12:34:21 GMT expires: - '-1' pragma: @@ -2030,7 +2175,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29905 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29889 status: code: 200 message: OK @@ -2044,13 +2189,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -2060,7 +2205,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:11:06 GMT + - Tue, 02 Feb 2021 12:34:52 GMT expires: - '-1' pragma: @@ -2077,7 +2222,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29902 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29886 status: code: 200 message: OK @@ -2091,13 +2236,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -2107,7 +2252,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:11:36 GMT + - Tue, 02 Feb 2021 12:35:22 GMT expires: - '-1' pragma: @@ -2124,7 +2269,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29899 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29905 status: code: 200 message: OK @@ -2138,13 +2283,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -2154,7 +2299,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:12:07 GMT + - Tue, 02 Feb 2021 12:35:52 GMT expires: - '-1' pragma: @@ -2171,7 +2316,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29896 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29902 status: code: 200 message: OK @@ -2185,13 +2330,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -2201,7 +2346,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:12:37 GMT + - Tue, 02 Feb 2021 12:36:22 GMT expires: - '-1' pragma: @@ -2218,7 +2363,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29893 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29899 status: code: 200 message: OK @@ -2232,13 +2377,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ \r\n}" headers: cache-control: @@ -2248,7 +2393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:13:08 GMT + - Tue, 02 Feb 2021 12:36:53 GMT expires: - '-1' pragma: @@ -2265,7 +2410,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29890 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29896 status: code: 200 message: OK @@ -2279,14 +2424,108 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:06:02.8337442+00:00\",\r\n \"\ - endTime\": \"2021-01-19T10:13:29.1775526+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"73a7ad10-9d2d-450d-be4f-eceaffc2786f\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:37:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29893 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:37:54 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29890 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:29:48.5342394+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:38:06.2089145+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"8e2f717e-5a40-477f-a60e-7bba1a1b7217\"\r\n}" headers: cache-control: - no-cache @@ -2295,7 +2534,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:13:38 GMT + - Tue, 02 Feb 2021 12:38:24 GMT expires: - '-1' pragma: @@ -2312,7 +2551,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29887 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29888 status: code: 200 message: OK @@ -2326,9 +2565,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/73a7ad10-9d2d-450d-be4f-eceaffc2786f?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/8e2f717e-5a40-477f-a60e-7bba1a1b7217?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -2338,7 +2577,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 10:13:38 GMT + - Tue, 02 Feb 2021 12:38:24 GMT expires: - '-1' pragma: @@ -2351,7 +2590,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29886 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29887 status: code: 200 message: OK @@ -2367,7 +2606,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e/virtualmachines/1/reimageall?api-version=2020-06-01 response: @@ -2375,17 +2614,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 10:13:39 GMT + - Tue, 02 Feb 2021 12:38:25 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -2396,7 +2635,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1191,Microsoft.Compute/VMScaleSetVMActions3Min;199,Microsoft.Compute/VMScaleSetVMActions30Min;996,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 + - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1195,Microsoft.Compute/VMScaleSetVMActions3Min;199,Microsoft.Compute/VMScaleSetVMActions30Min;998,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-writes: - '1197' x-ms-request-charge: @@ -2414,13 +2653,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2430,7 +2669,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:14:09 GMT + - Tue, 02 Feb 2021 12:38:55 GMT expires: - '-1' pragma: @@ -2447,7 +2686,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29884 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29885 status: code: 200 message: OK @@ -2461,13 +2700,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2477,7 +2716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:14:40 GMT + - Tue, 02 Feb 2021 12:39:26 GMT expires: - '-1' pragma: @@ -2494,7 +2733,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29881 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29882 status: code: 200 message: OK @@ -2508,13 +2747,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2524,7 +2763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:15:10 GMT + - Tue, 02 Feb 2021 12:39:56 GMT expires: - '-1' pragma: @@ -2541,7 +2780,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29904 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29879 status: code: 200 message: OK @@ -2555,13 +2794,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2571,7 +2810,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:15:41 GMT + - Tue, 02 Feb 2021 12:40:26 GMT expires: - '-1' pragma: @@ -2588,7 +2827,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29901 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29905 status: code: 200 message: OK @@ -2602,13 +2841,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2618,7 +2857,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:16:11 GMT + - Tue, 02 Feb 2021 12:40:56 GMT expires: - '-1' pragma: @@ -2635,7 +2874,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29898 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29902 status: code: 200 message: OK @@ -2649,13 +2888,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2665,7 +2904,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:16:41 GMT + - Tue, 02 Feb 2021 12:41:27 GMT expires: - '-1' pragma: @@ -2682,7 +2921,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29895 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29899 status: code: 200 message: OK @@ -2696,13 +2935,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2712,7 +2951,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:17:11 GMT + - Tue, 02 Feb 2021 12:41:58 GMT expires: - '-1' pragma: @@ -2729,7 +2968,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29893 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29896 status: code: 200 message: OK @@ -2743,13 +2982,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2759,7 +2998,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:17:42 GMT + - Tue, 02 Feb 2021 12:42:28 GMT expires: - '-1' pragma: @@ -2776,7 +3015,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29890 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29893 status: code: 200 message: OK @@ -2790,13 +3029,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2806,7 +3045,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:18:13 GMT + - Tue, 02 Feb 2021 12:42:58 GMT expires: - '-1' pragma: @@ -2823,7 +3062,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29887 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29891 status: code: 200 message: OK @@ -2837,13 +3076,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2853,7 +3092,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:18:43 GMT + - Tue, 02 Feb 2021 12:43:28 GMT expires: - '-1' pragma: @@ -2870,7 +3109,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29884 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29888 status: code: 200 message: OK @@ -2884,13 +3123,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2900,7 +3139,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:19:13 GMT + - Tue, 02 Feb 2021 12:43:59 GMT expires: - '-1' pragma: @@ -2917,7 +3156,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29881 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29885 status: code: 200 message: OK @@ -2931,13 +3170,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2947,7 +3186,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:19:43 GMT + - Tue, 02 Feb 2021 12:44:29 GMT expires: - '-1' pragma: @@ -2964,7 +3203,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29878 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29882 status: code: 200 message: OK @@ -2978,13 +3217,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -2994,7 +3233,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:20:13 GMT + - Tue, 02 Feb 2021 12:45:00 GMT expires: - '-1' pragma: @@ -3011,7 +3250,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29894 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29888 status: code: 200 message: OK @@ -3025,13 +3264,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -3041,7 +3280,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:20:44 GMT + - Tue, 02 Feb 2021 12:45:30 GMT expires: - '-1' pragma: @@ -3058,7 +3297,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29891 + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29885 status: code: 200 message: OK @@ -3072,13 +3311,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\ \r\n}" headers: cache-control: @@ -3088,7 +3327,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:21:15 GMT + - Tue, 02 Feb 2021 12:46:00 GMT expires: - '-1' pragma: @@ -3105,7 +3344,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29889 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29882 status: code: 200 message: OK @@ -3119,23 +3358,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:13:39.5056554+00:00\",\r\n \"\ - endTime\": \"2021-01-19T10:21:22.9429488+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"db599c44-44f7-4123-ace5-c0bf8f001d85\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:38:25.5371477+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:46:29.164007+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"04765602-0c74-445a-94a7-40d347255e19\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:21:45 GMT + - Tue, 02 Feb 2021 12:46:30 GMT expires: - '-1' pragma: @@ -3152,7 +3391,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29886 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29879 status: code: 200 message: OK @@ -3166,9 +3405,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/db599c44-44f7-4123-ace5-c0bf8f001d85?monitor=true&api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/04765602-0c74-445a-94a7-40d347255e19?monitor=true&api-version=2020-06-01 response: body: string: '' @@ -3178,7 +3417,7 @@ interactions: content-length: - '0' date: - - Tue, 19 Jan 2021 10:21:45 GMT + - Tue, 02 Feb 2021 12:46:31 GMT expires: - '-1' pragma: @@ -3191,7 +3430,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29885 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29878 status: code: 200 message: OK @@ -3207,7 +3446,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgname/providers/Microsoft.Compute/virtualMachineScaleSets/virtualmachinescalesetb172129e?api-version=2020-06-01 response: @@ -3217,17 +3456,17 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/047d27ab-1d14-4bc4-89a5-56aa392413db?api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a42117cc-1176-4171-bd4a-579c5a96829d?api-version=2020-06-01 cache-control: - no-cache content-length: - '0' date: - - Tue, 19 Jan 2021 10:21:46 GMT + - Tue, 02 Feb 2021 12:46:32 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/047d27ab-1d14-4bc4-89a5-56aa392413db?monitor=true&api-version=2020-06-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a42117cc-1176-4171-bd4a-579c5a96829d?monitor=true&api-version=2020-06-01 pragma: - no-cache server: @@ -3240,7 +3479,7 @@ interactions: x-ms-ratelimit-remaining-resource: - Microsoft.Compute/DeleteVMScaleSet3Min;79,Microsoft.Compute/DeleteVMScaleSet30Min;399,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1199,Microsoft.Compute/VmssQueuedVMOperations;4799 x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' x-ms-request-charge: - '1' status: @@ -3256,23 +3495,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/047d27ab-1d14-4bc4-89a5-56aa392413db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a42117cc-1176-4171-bd4a-579c5a96829d?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:21:46.5681839+00:00\",\r\n \"\ - status\": \"InProgress\",\r\n \"name\": \"047d27ab-1d14-4bc4-89a5-56aa392413db\"\ + string: "{\r\n \"startTime\": \"2021-02-02T12:46:32.507791+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a42117cc-1176-4171-bd4a-579c5a96829d\"\ \r\n}" headers: cache-control: - no-cache content-length: - - '134' + - '133' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:21:56 GMT + - Tue, 02 Feb 2021 12:46:42 GMT expires: - '-1' pragma: @@ -3289,7 +3528,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29884 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29877 status: code: 200 message: OK @@ -3303,23 +3542,117 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-azure-mgmt-compute/0.0.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/047d27ab-1d14-4bc4-89a5-56aa392413db?api-version=2020-06-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a42117cc-1176-4171-bd4a-579c5a96829d?api-version=2020-06-01 response: body: - string: "{\r\n \"startTime\": \"2021-01-19T10:21:46.5681839+00:00\",\r\n \"\ - endTime\": \"2021-01-19T10:22:08.1620791+00:00\",\r\n \"status\": \"Succeeded\"\ - ,\r\n \"name\": \"047d27ab-1d14-4bc4-89a5-56aa392413db\"\r\n}" + string: "{\r\n \"startTime\": \"2021-02-02T12:46:32.507791+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a42117cc-1176-4171-bd4a-579c5a96829d\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:46:53 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29876 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a42117cc-1176-4171-bd4a-579c5a96829d?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:46:32.507791+00:00\",\r\n \"\ + status\": \"InProgress\",\r\n \"name\": \"a42117cc-1176-4171-bd4a-579c5a96829d\"\ + \r\n}" + headers: + cache-control: + - no-cache + content-length: + - '133' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 02 Feb 2021 12:47:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29875 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-azure-mgmt-compute/18.2.0 Python/3.6.9 (Linux-4.9.184-linuxkit-x86_64-with-Ubuntu-18.04-bionic) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus/operations/a42117cc-1176-4171-bd4a-579c5a96829d?api-version=2020-06-01 + response: + body: + string: "{\r\n \"startTime\": \"2021-02-02T12:46:32.507791+00:00\",\r\n \"\ + endTime\": \"2021-02-02T12:47:49.1020321+00:00\",\r\n \"status\": \"Succeeded\"\ + ,\r\n \"name\": \"a42117cc-1176-4171-bd4a-579c5a96829d\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '183' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 10:22:08 GMT + - Tue, 02 Feb 2021 12:47:54 GMT expires: - '-1' pragma: @@ -3336,7 +3669,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29883 + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29874 status: code: 200 message: OK diff --git a/sdk/compute/azure-mgmt-compute/tests/test_mgmt_compute_disks.py b/sdk/compute/azure-mgmt-compute/tests/test_mgmt_compute_disks.py index b92c07deeb50..383fdf608d6d 100644 --- a/sdk/compute/azure-mgmt-compute/tests/test_mgmt_compute_disks.py +++ b/sdk/compute/azure-mgmt-compute/tests/test_mgmt_compute_disks.py @@ -191,7 +191,7 @@ def test_compute_disk_encryption(self, resource_group): TENANT_ID = self.settings.TENANT_ID CLIENT_OID = self.settings.CLIENT_OID if self.is_live else "000" RESOURCE_GROUP = resource_group.name - KEY_VAULT_NAME = self.get_resource_name("keyvaultxmmx") + KEY_VAULT_NAME = self.get_resource_name("keyvaultxmmy") DISK_ENCRYPTION_SET_NAME = self.get_resource_name("diskencryptionset") VAULT_ID, KEY_URI = self.create_key(RESOURCE_GROUP, AZURE_LOCATION, KEY_VAULT_NAME, TENANT_ID, CLIENT_OID)